一.常用命令
拉遠程的repo至本地
git clone
基于目前分支創(chuàng)建新的分支
git checkout -b branch-name
顯示當前分支
git branch
添加已修改文件(文件夾)
git add file_name
提交commit
git commit -m "some information"
查詢remote的repo
git remote -v
添加自己或fork來的倉庫
git remote add upstream https://...
推commit至某一repo
git push origin/upstream
其他命令
reset至某一commit但不強制還原代碼
git log //復制想要還原的點
git reset --soft + hash_value
在修改代碼之前需要進行rebase
拉取最新的數(shù)據(jù)
git fetch origin
git rebase origin/branch
附錄
掘金Git小冊:https://juejin.cn/book/6844733697996881928/section/6844733698047229965
Pro Git:https://git-scm.com/book/zh/v2