11

假设我有 2 个分支,master并且other.

我进入other分支,添加 2 个文件,提交并推送。

现在我进入master分支,将文件添加到不同的目录,然后提交它们。然后我合并other

问题是我添加的文件other没有显示出来。Git 说它是最新的,但它不是!文件丢失。

如何强制master添加文件other或以某种方式手动添加它们?

为卡尔编辑:

据我所知,我做了以下事情,尽管没有出现的变化是几周前的事情。我才意识到他们今天不在那里。

$ git branch
*other
master
$ git add .
$ git commit -m 'cool new features'
$ git push origin other
$ git checkout master
$ git merge other
$ git add .
$ git commit -m 'merged cool new features from other'
$ git push origin master

我去Github,文件不在那里。其他文件已提交并显示,但两个文件夹没有匹配的内容。这些文件存在于other但不存在于master. 澄清一下,这些文件并不新鲜。master但我认为如果文件不存在,合并至少会将文件复制到!

4

4 回答 4

8

有点晚了,但是对于发现这个问题的其他用户,我将描述一个AJcodez观察到的问题会发生的情况。如果您执行 a git checkout master; git merge other,在此期间或之后您删除了一些新文件master(并且可能忘记了这一事实)git checkout master; git merge other,然后再次执行 a ,那么“新”文件将不会重新出现在 中master,因为它们不是新文件。合并只关心与合并基础相关的更改,合并基础是可通过两个分支访问的最年轻的提交。在您的第二次合并期间,合并基础与您的第一次合并期间不同,在所描述的场景中第二次合并期间的合并基础是第一次合并期间的提交other。如果other此后没有更改新文件,则删除master是最新的更改,因此新文件的删除将是第二次合并后的状态。

如果这看起来不方便,您可以通过创建一个临时分支(我们称之为它merge_branch)、other使用--squash、提交、合并master和删除临时分支来解决它。这可能不是理想的解决方案(例如,已经解决的合并冲突可能必须再次解决),但原来的情况可能已经是错误的结果。这是我在代码中的意思:

git log other # find the commit where 'other' originally branched off
git checkout -b merge_branch COMMIT_ID # go there & create branch
# without '--squash', the following merge would simply be a fast-forward
# merge and wouldn't solve our problem, because 'merge_branch' would then
# point to the same commit as 'other' and so the later merge into
# 'master' would produce the same unsatisfactory result.
git merge --squash other # does not create a new commit by itself
git commit # better add an explanation for what you did and why
# 'merge_branch' now contains everything you did in 'other' since it
# branched off from 'master', but squashed into a single new commit
git checkout master
git merge merge_branch
git branch --delete merge_branch
于 2016-11-30T15:21:24.810 回答
4

像这样:

karl@Bielefeldt-Server:~/stackoverflow$ git init .
Initialized empty Git repository in /home/karl/stackoverflow/.git/
karl@Bielefeldt-Server:~/stackoverflow$ touch common_file_a
karl@Bielefeldt-Server:~/stackoverflow$ touch common_file_b
karl@Bielefeldt-Server:~/stackoverflow$ git add .
karl@Bielefeldt-Server:~/stackoverflow$ git commit -m "commit common files"
[master (root-commit) 89a5cd0] commit common files
 0 files changed
 create mode 100644 common_file_a
 create mode 100644 common_file_b
karl@Bielefeldt-Server:~/stackoverflow$ git checkout -b other
Switched to a new branch 'other'
karl@Bielefeldt-Server:~/stackoverflow$ mkdir other
karl@Bielefeldt-Server:~/stackoverflow$ touch other/other_file_a
karl@Bielefeldt-Server:~/stackoverflow$ touch other/other_file_b
karl@Bielefeldt-Server:~/stackoverflow$ git add .
karl@Bielefeldt-Server:~/stackoverflow$ git commit -m "commit other files"
[other 9c7409c] commit other files
 0 files changed
 create mode 100644 other/other_file_a
 create mode 100644 other/other_file_b
karl@Bielefeldt-Server:~/stackoverflow$ git checkout master
Switched to branch 'master'
karl@Bielefeldt-Server:~/stackoverflow$ touch master_file_a
karl@Bielefeldt-Server:~/stackoverflow$ touch master_file_b
karl@Bielefeldt-Server:~/stackoverflow$ git add .
karl@Bielefeldt-Server:~/stackoverflow$ git commit -m "commit master files"
[master 3558768] commit master files
 0 files changed
 create mode 100644 master_file_a
 create mode 100644 master_file_b
karl@Bielefeldt-Server:~/stackoverflow$ ls
common_file_a  common_file_b  master_file_a  master_file_b
karl@Bielefeldt-Server:~/stackoverflow$ git merge other
Merge made by the 'recursive' strategy.
 0 files changed
 create mode 100644 other/other_file_a
 create mode 100644 other/other_file_b
karl@Bielefeldt-Server:~/stackoverflow$ ls
common_file_a  common_file_b  master_file_a  master_file_b  other
karl@Bielefeldt-Server:~/stackoverflow$ ls other
other_file_a  other_file_b

如果你得到不同的结果,你要么错过了一个步骤,在某个地方多出了一个步骤,要么你得到了一些你没有告诉我们的错误,比如合并冲突。我们无法知道为什么这么基本的东西不适合你,除非你发布你得到的确切命令和输出,就像我上面所做的那样。

于 2012-11-29T04:45:18.433 回答
1

我通过在 master 分支创建具有相同名称的空文件解决了这个问题:

假设,分支other包含一个新文件 newfile.txt,它没有以某种方式合并到master.

git checkout master
touch newfile.txt
git add newfile.txt
git commit -m "create newfile.txt"
git merge other

这有点脏,但有效。

于 2017-04-08T09:35:30.447 回答
0

碰巧我只做一个

git merge other

是不足够的。在合并之前,我必须从分支中提取更改other

git checkout other
git pull
git checkout first

然后我能够

git merge other
于 2018-12-14T14:13:35.197 回答