标签: git
我通过以下步骤将我的功能分支提交到原点:
git checkout feature/feature1 git pull --all git rebase develop //show commit messages git push origin feature1
现在我看到了,我有多个提交正在//显示提交消息的存储上。现在我想为所有这些提交一个提交并想要推送存储。因此,对于审阅者,将只有一个提交审核。我应该遵循哪些步骤。 感谢