有没有一种方法来做一个git拉,忽略任何本地文件的变化,而不吹走目录,并必须执行一个git克隆?
当前回答
如果您在一个分支上,并且希望丢弃分支上的任何本地更改并拉取远程分支,但遇到 你的分支和'origin/<branch_name>'已经分离, 它可以在停留在分支上时通过以下方法解决:
git fetch --all
git reset --hard origin/<branch_name>
其他回答
如果你的意思是你想要pull覆盖局部更改,就像工作树是干净的一样进行合并,好吧,清洁工作树:
git reset --hard
git pull
如果有未跟踪的本地文件,可以使用git clean删除它们。
Git clean -f删除未跟踪的文件 -df删除未跟踪的文件和目录 -xdf删除未跟踪或忽略的文件或目录
另一方面,如果你想以某种方式保留局部修改,你可以在拖动之前使用stash将它们隐藏起来,然后在之后重新应用它们:
git stash
git pull
git stash pop
但是,我认为忽略这些更改没有任何意义——pull的一半是merge,它需要将提交的内容版本与它获取的版本合并。
下面的命令不会总是工作。如果你这样做了:
$ 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'
. gitignore
“向.gitignore添加不需要的文件,只要你最初没有将它们提交给任何分支。”
你也可以运行:
git update-index --assume-unchanged filename
https://chamindac.blogspot.com/2017/07/ignoring-visual-studio-2017-created.html
你只是想要一个与rm -rf local_repo && git clone remote_url完全相同的命令,对吗?我也想要这个功能。我想知道为什么git没有提供这样的命令(比如git reclone或者git sync), svn也没有这样的命令(比如svn recheckout或者svn sync)。
试试下面的命令:
git reset --hard origin/master
git clean -fxd
git pull
这将获取当前分支并尝试快速跳转到master:
git fetch && git merge --ff-only origin/master
推荐文章
- 为什么我需要显式地推一个新分支?
- 如何撤消最后的git添加?
- Rubymine:如何让Git忽略Rubymine创建的.idea文件
- Gitignore二进制文件,没有扩展名
- Git隐藏错误:Git隐藏弹出并最终与合并冲突
- 了解Git和GitHub的基础知识
- 没有。Git目录的Git克隆
- Git与Mercurial仓库的互操作性
- 忽略git中修改(但未提交)的文件?
- “git restore”命令是什么?“git restore”和“git reset”之间有什么区别?
- Git合并与强制覆盖
- Git拉另一个分支
- 在Bash命令提示符上添加git分支
- 如何更改Git日志日期格式
- git pull -rebase和git pull -ff-only之间的区别