标签:ini clone reset pretty check branch 切换 git push comm
git init
git clone <远程仓库地址>
git add .
git commit -m "<提交信息>"
git push <远程仓库/仓库名>
git log
,在一行查看git log --pretty=oneline
git branch -l
git branch <新分支名>
git branch -b <哈希>
git merge <分支名>
git checkout <分支名>
git reset --head <哈希>
git remote add <仓库名> <远程仓库地址>
持续更新
标签:ini clone reset pretty check branch 切换 git push comm
原文地址:https://www.cnblogs.com/freesfu/p/11674060.html