sh Git pull from master删除我的本地更改

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh Git pull from master删除我的本地更改相关的知识,希望对你有一定的参考价值。


https://stackoverflow.com/questions/20581914/files-not-updating-using-git-pull

1)
git checkout -f

2)
git clean -fd

3) git pull 
OR 
git pull origin master
To specify the branch


Script:
#!/bin/bash
echo "Check Git Status..."
git status
echo "Clear local changes..."
sleep 1 &&
git checkout -f
git clean -fd

echo "Pull latest Changes..."
sleep 1 &&
git pull











以上是关于sh Git pull from master删除我的本地更改的主要内容,如果未能解决你的问题,请参考以下文章

git pull后为啥分支没有更新

我如何进行git pull更新?

sh [git pull / push] pull或push命令#git #bash #linux

git 在使用拉取、推送(pull或push)时时候会出现这样的错误提示

Git进阶教程_from bilibili part2

sh git-pull-recursive.sh