-
git branch <name> git branch git checkout <name> git branch -d <name> git branch -D <name> # force delete git chechout -b <name> # create and switch
查看全部 -
git tag <name> git tag git tag <name> <id> git tag -d <name> # delete tag git push origin <name>
查看全部 -
git push origin master
查看全部 -
git checkout <id> -- <file>
查看全部 -
git reset --hard HEAD^ git reset --hard HEAD^^ git reset --hard <id>
查看全部 -
git reset HEAD <file> git checkout -- <file>
查看全部 -
git diff
git checkout -- <file>
查看全部 -
git log --pretty=oneline home/home.html git show <id>
git log -p <file>
查看全部 -
git mv <sourceFile> <destDir> git mv <sourceFile> <destDir/destFile>
查看全部 -
git mv <source> <dest>
查看全部 -
git rm <filename>
查看全部 -
git status
git add <filename>
查看全部 -
git config --global user.name '五月的夏天' git config --global user.emall '285258675@qq.com' git config --global --list
查看全部 -
git log
git log --author='<userName>'
查看全部 -
git add .
git commit -m ...
git remote add origin https://github.com/
git push -u origin master
查看全部
举报
0/150
提交
取消