在我的分支上,我在.gitignore中有一些文件
在另一个分支上,这些文件不是。
我想将不同的分支合并到我的分支中,我不关心这些文件是否不再被忽略。
不幸的是,我得到了这个:
以下未跟踪的工作树文件将被合并覆盖
我如何修改我的pull命令来覆盖这些文件,而不需要我自己找到、移动或删除这些文件?
在我的分支上,我在.gitignore中有一些文件
在另一个分支上,这些文件不是。
我想将不同的分支合并到我的分支中,我不关心这些文件是否不再被忽略。
不幸的是,我得到了这个:
以下未跟踪的工作树文件将被合并覆盖
我如何修改我的pull命令来覆盖这些文件,而不需要我自己找到、移动或删除这些文件?
当前回答
更新-一个更好的版本
此工具(https://github.com/mklepaczewski/git-clean-before-merge)将:
删除未跟踪的文件,这些文件与它们的git拉等价物相同, 将更改还原到修改后的文件,这些文件的修改版本与它们的git拉等价物相同, 报告修改/未跟踪的文件,与他们的git拉版本不同, 该工具有——pretend选项,不会修改任何文件。
旧版本
这个答案与其他答案有何不同?
这里给出的方法只删除将被merge覆盖的文件。如果目录中有其他未跟踪(可能被忽略)的文件,此方法将不会删除它们。
解决方案
这段代码将提取所有将被git删除并覆盖的未跟踪文件。
git pull 2>&1|grep -E '^\s'|cut -f2-|xargs -I {} rm -rf "{}"
然后就这样做:
git pull
这不是git瓷器命令,所以总是仔细检查它会做什么:
git pull 2>&1|grep -E '^\s'|cut -f2-|xargs -I {} echo "{}"
解释——因为有一句台词很吓人:
以下是它的功能:
git pull 2>&1 - capture git pull output and redirect it all to stdout so we can easily capture it with grep. grep -E '^\s - the intent is to capture the list of the untracked files that would be overwritten by git pull. The filenames have a bunch of whitespace characters in front of them so we utilize it to get them. cut -f2- - remove whitespace from the beginning of each line captured in 2. xargs -I {} rm -rf "{}" - us xargs to iterate over all files, save their name in "{}" and call rm for each of them. We use -rf to force delete and remove untracked directories.
如果用瓷器命令代替第1-3步就太好了,但我不知道有什么等价的。
其他回答
问题是,当我们有传入的更改,将合并未跟踪的文件,git抱怨。这些命令帮助了我:
git clean -dxf
git pull origin master
唯一对我有用的命令是: (请注意,这会删除所有本地文件)
git fetch --all
git reset --hard origin/{{your branch name}}
删除所有未跟踪的文件:
git clean -d -fx .
警告:这将删除IDE文件和任何有用的文件,只要你不跟踪这些文件。请谨慎使用此命令
您可以试试这个命令
git clean -df
编辑: 请注意,这将删除可能有价值的未跟踪文件。 感谢@zhekaus
对于那些不知道的人,git忽略了文件和文件夹中的大写/小写名称差异。当您用不同的情况将它们重命名为完全相同的名称时,结果是一场噩梦。
当我将文件夹从“Petstore”重命名为“Petstore”(大写到小写)时遇到了这个问题。我已经编辑了我的.git/config文件以停止忽略大小写,进行了更改,压缩了我的提交,并保存了我的更改以移动到不同的分支。我不能将我所存储的更改应用到另一个分支。
The fix that I found that worked was to temporarily edit my .git/config file to temporarily ignore case again. This caused git stash apply to succeed. Then, I changed ignoreCase back to false. I then added everything except for the new files in the petstore folder which git oddly claimed were deleted, for whatever reason. I committed my changes, then ran git reset --hard HEAD to get rid of those untracked new files. My commit appeared exactly as expected: the files in the folder were renamed.
我希望这能帮助你避免我同样的噩梦。