如何' git拉'而忽略局部变化?

有没有一种方法来做git pull忽略任何本地文件更改,而不吹走目录,并必须执行git clone?

825816 次浏览

查看git藏,将所有本地更改放入“保存文件”中,并恢复到上次提交。此时,您可以应用您所存储的更改,或者丢弃它们。

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

git reset --hard
git pull

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

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

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

git stash
git pull
git stash pop

我不认为它有任何意义的忽略的变化,尽管-拉的一半是合并,它需要合并提交的版本的内容与它取得的版本。

如果你使用的是Linux:

git fetch
for file in `git diff origin/master..HEAD --name-only`; do rm -f "$file"; done
git pull
for循环将删除所有在本地repo中更改的跟踪文件,因此git pull将正常工作 关于这一点最好的事情是,只有被跟踪的文件将被repo中的文件覆盖,所有其他文件将保持不变

命令如下:不会一直管用的。如果你这样做了:

$ 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'

对我来说,以下方法是有效的:

(1)首先获取所有更改:

$ git fetch --all

(2)然后重置主机:

$ git reset --hard origin/master

注-对于github的用户,"master"被“main”所取代;2020年10月。对于此后创建的项目,您可能需要使用“;main”;相反,如:

$ git reset --hard origin/main

(3)拉/更新:

$ git pull

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

git fetch && git merge --ff-only origin/master
git fetch --all && git reset --hard origin/master

您只需要一个与rm -rf local_repo && git clone remote_url给出完全相同结果的命令,对吗?我也想要这个功能。我想知道为什么git没有提供这样的命令(如git reclonegit sync), svn也没有提供这样的命令(如svn recheckoutsvn sync)。

试试下面的命令:

git reset --hard origin/master
git clean -fxd
git pull

这对我很有效

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

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

.gitignore

“向.gitignore添加不需要的文件,只要你最初没有将它们提交给任何分支。”

你也可以运行:

git update-index --assume-unchanged filename

https://chamindac.blogspot.com/2017/07/ignoring-visual-studio-2017-created.html

我通常这样做:

git checkout .
git pull

在项目的根文件夹中。

最简单的方法是:

git pull --rebase --autostash

此外,还可以保留来自本地提交的更改,并将其作为新的提交推送。当我在本地提交中出现混乱时,我使用这些步骤。

  1. Git重置-软源/主
  2. git藏
  3. 快拉,变基
  4. Git隐藏pop

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

  1. Git恢复<fileName>或者git恢复。
  2. git拉

如果你在一个分支上,并且想要丢弃分支上的任何本地更改并拉出远程分支,但是遇到 # EYZ0, 它可以通过

在分支上解决
git fetch --all
git reset --hard origin/<branch_name>