Useful Git Command
原文链接 http://allanhost.com/tag/2018/09/04/Useful-Git-Command.html
注:以下为加速网络访问所做的原文缓存,经过重新格式化,可能存在格式方面的问题,或偶有遗漏信息,请以原文为准。
同步远程和本地目录
git init git remote add origin $url_of_clone_source git fetch origin git checkout -b master --track origin/master # origin/master is clone's default
展示远程的分支
git branch -a
展示远程的仓库地址
git remote -v
reset
git reset --hard HEAD~1
stash
//stash files git stash
//list all stash git stash list
//apply near stash git stash apply
//apply index stash git stash apply --index
设置你的邮箱
git config --global user.name "Allan Chan" git config --global user.email "allan@example.com"