masternan 2020-06-09
git config --global user.name "Your name"
git config --global user.email ""
git init (on the directory wanna set as repository)
ps : commond ll -a to make sure the .git file created
git log;
git log --pretty=oneline;
HEAD 是版本标记,用于版本回滚,可使用git log 查看
git reset --hard commit_id
忘记回滚版本可使用git reflog查看历史命令
add 之前:git checkout -- <file_path>
add 之后:git reset HEAD <file_path> 然后 git checkout -- <file_path>
git push origin 分支名
本地库代码推送到远程库, 多人协作时在push之前要先pull
git branch
git fetch
git branch <分支名>
git checkout <分支名>
git checkout -b <分支名>
git merge <分支名>
git branch -d <分支名>
git log --graph
show git branch praph
来自基友 爆炸峰