设置不用每次都输入账号密码:
git config --global credential.helper store
然后,下次再输入一次 账号密码 就可以了。
git强制覆盖:
git fetch --all
git reset --hard origin/master
git pull
git强制覆盖本地命令(单条执行):
git fetch --all && git reset --hard origin/master && git pull
设置不用每次都输入账号密码:
git config --global credential.helper store
然后,下次再输入一次 账号密码 就可以了。
git强制覆盖:
git fetch --all
git reset --hard origin/master
git pull
git强制覆盖本地命令(单条执行):
git fetch --all && git reset --hard origin/master && git pull
本文标题:Git的一些使用技巧
本文链接:https://www.haomeiwen.com/subject/xtwkaqtx.html
网友评论