1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
| git branch -vv
git branch -m <新分支名称> (当前分支)
git branch -m <旧分支名称> <新分支名称> (非当前分支)
git branch --set-upstream-to=<主机名称> <分支名称>
git remote add <主机名称> <主机地址>
git remote remove <主机名称>
git remote rename <旧主机名称> <新主机名称>
git stash push -S -m <message>
git push --delete <主机名称> <分支名称>
git diff <commitID> <commitID> --name-only | xargs zip diff.zip
|