有没有一种方法来做一个git拉,忽略任何本地文件的变化,而不吹走目录,并必须执行一个git克隆?


当前回答

下面的命令不会总是工作。如果你这样做了:

$ git checkout thebranch
Already on 'thebranch'
Your branch and 'origin/thebranch' have diverged,
and have 23 and 7 different commits each, respectively.

$ git reset --hard
HEAD is now at b05f611 Here the commit message bla, bla

$ git pull
Auto-merging thefile1.c
CONFLICT (content): Merge conflict in thefile1.c
Auto-merging README.md
CONFLICT (content): Merge conflict in README.md
Automatic merge failed; fix conflicts and then commit the result.

等等……

要真正从头开始,下载分支并覆盖所有本地更改,只需执行:


$ git checkout thebranch
$ git reset --hard origin/thebranch

这就可以了。

$ git checkout thebranch
Already on 'thebranch'
Your branch and 'origin/thebranch' have diverged,
and have 23 and 7 different commits each, respectively.

$ git reset --hard origin/thebranch
HEAD is now at 7639058 Here commit message again...

$ git status
# On branch thebranch
nothing to commit (working directory clean)

$ git checkout thebranch
Already on 'thebranch'

其他回答

这将获取当前分支并尝试快速跳转到master:

git fetch && git merge --ff-only origin/master

如果你使用的是Linux:

git fetch
for file in `git diff origin/master..HEAD --name-only`; do rm -f "$file"; done
git pull

for循环将删除所有在本地回购中更改的跟踪文件,因此git pull将正常工作。 关于这一点最好的事情是,只有被跟踪的文件将被repo中的文件覆盖,所有其他文件将保持不变。

虽然很晚了,但有人会觉得这很有用。(为我工作过)

git restore < fileName>或git restore。 git拉

这对我很有效

git fetch --all
git reset --hard origin/master
git pull origin master

对于接受的答案,我会得到冲突错误

如果你的意思是你想要pull覆盖局部更改,就像工作树是干净的一样进行合并,好吧,清洁工作树:

git reset --hard
git pull

如果有未跟踪的本地文件,可以使用git clean删除它们。

Git clean -f删除未跟踪的文件 -df删除未跟踪的文件和目录 -xdf删除未跟踪或忽略的文件或目录

另一方面,如果你想以某种方式保留局部修改,你可以在拖动之前使用stash将它们隐藏起来,然后在之后重新应用它们:

git stash
git pull
git stash pop

但是,我认为忽略这些更改没有任何意义——pull的一半是merge,它需要将提交的内容版本与它获取的版本合并。