Git命令

push: 

git init 
git add .
git commit -m "first commit"
git branch -M main
git remote add origin <远程仓库地址>
git push -u origin main

stash:

git stash
git pull
git stash pop

覆盖本地修改:

git reset --hard
git pull

回退:

git log
git reset --soft <版本号>
git push -f -u origin main

删除分支:

git branch -D branch_name
git push origin :branch_name

后悔药:

git reflog
git reset --hard 

最新token:https://blog.csdn.net/weixin_41010198/article/details/119698015

你可能感兴趣的:(git,github)