25

我正在尝试将我的所有提交从当前分支重新定位并压缩到主分支。这是我正在尝试做的事情:

git checkout -b new-feature

在我尝试之后进行几次提交:

git rebase -i master

在这种情况下,提交将保留在new-feature分支中

git checkout master
git rebase -i new-feature

它为我提供了带有 noop 消息的编辑窗口。

我知道命令:

git merge --squash new-feature

但我目前正在学习rebase命令。

4

2 回答 2

55

让我们来看看这些步骤。

1 - 我们创建一个新的功能分支

git checkout -b new-feature

2 - 现在您可以在新分支上添加/删除和更新您想要的任何内容

git add <new-file>
git commit -am "Added new file"
git rm <file-name>
git commit -am "Removed a file"
cat "add more stuff to file" >> <new-file>
git commit -am "Updated files"

3 - 接下来,挑选并压缩任何提交到一个漂亮漂亮的提交消息

git rebase -i master

您需要记住的关键是在第一次提交后将所有提交的“pick”文本更改为“squash”。这会将所有提交压缩到您的主分支。

4 - 选择主分支

git checkout master

5 - 将 HEAD 和 master 分支移动到 new-feature 所在的位置:

git rebase new-feature

您可以在此可视化工具中尝试所有命令:http: //pcottle.github.io/learnGitBranching/

于 2013-08-03T13:59:57.467 回答
7

变基时,Git 不会将提交移动到另一个分支。它将移动分支,包括其所有提交。如果您想在基于它的基础上将提交提交到 master 中,请使用git merge <branch tip or commit of branch>将 master 分支快进到该提交。

于 2013-03-31T08:20:57.787 回答