2015-10-16 129 views
1

我有一个分支('其他')作为子树附加到另一个('主')。当我从'other'执行子树合并到'master'时,它不会删除在'other'中删除的文件。为什么git子树合并不会删除文件?

重现步骤在一个干净的回购:

$ touch master.txt 
$ git add master.txt 
$ git commit -m 'Initial master' 
[master (root-commit) e2f5ffd] Initial master 
1 file changed, 0 insertions(+), 0 deletions(-) 
create mode 100644 master.txt 
$ git checkout --orphan other 
Switched to a new branch 'other' 
$ touch other.txt 
$ git add other.txt 
$ git status 
On branch other 

Initial commit 

Changes to be committed: 
    (use "git rm --cached <file>..." to unstage) 

     new file: master.txt 
     new file: other.txt 
$ git commit -m 'Initial other' 
[other (root-commit) 408ee95] Initial other 
2 files changed, 0 insertions(+), 0 deletions(-) 
create mode 100644 master.txt 
create mode 100644 other.txt 
$ git checkout master 
Switched to branch 'master' 
$ git read-tree --prefix=other/ -u other 
$ git status 
On branch master 
Changes to be committed: 
    (use "git reset HEAD <file>..." to unstage) 

     new file: other/master.txt 
     new file: other/other.txt 
$ git commit -m 'Other subtreed' 
[master f9ba0db] Other subtreed 
2 files changed, 0 insertions(+), 0 deletions(-) 
create mode 100644 other/master.txt 
create mode 100644 other/other.txt 
$ git checkout other 
Switched to branch 'other' 
$ git rm master.txt 
rm 'master.txt' 
$ git commit -m 'master.txt removed' 
[other 1feef18] master.txt removed 
1 file changed, 0 insertions(+), 0 deletions(-) 
delete mode 100644 master.txt 
$ git checkout master 
Switched to branch 'master' 
$ git merge --squash -s subtree --no-commit other 
Squash commit -- not updating HEAD 
Automatic merge went well; stopped before committing as requested 
$ git status 
On branch master 
nothing to commit, working directory clean 

所以删除的文件的合并之后 - 没有什么承诺。这是正确的行为吗?以及如何使删除的文件合并?

回答

1

合并子树所拥有的一切正确的方式合并为:

git merge -s recursive -Xsubtree=other --no-commit other 

因此,它是没有--squash,有一点点不同形式(从混帐V2)。

+0

这对我不起作用,我已经有了通过子树合并添加的文件,并且稍后一旦删除了您的命令不会删除它们。它确实能够正确引入其余的更改 – LovesTha

相关问题