远程仓库代码下载到本地仓库
git clone project_url复制代码
切换分支
git checkout branch_name复制代码
新建并切换至本地分支
git checkout -b new_branch_name复制代码
分支同步master代码
git rebase origin/master
git push -f origin branch_name复制代码
显示工作目录文件状态
git status 复制代码
提交本地修改文件到git索引库
git add index.html复制代码
把所有修改文件提交到git索引库
git add --all复制代码
提交索引拉回暂存区
git reset HEAD index.html复制代码
恢复文件为修改前状态
git checkout index.html复制代码
查看修改前后的内容
git diff index.html复制代码
把修改索引添加到本地仓库
git commit -m "commit comment"复制代码
提交本地代码至远程分支
git push origin new_branch_name复制代码
将远程仓库代码下载至本地
git fetch branch_name复制代码
本地分支和远程分支代码合并
git merge origin/feature_branch_name复制代码
不同分支代码合并
先切换至 feature_branch_a
git checkout feature_branch_a
再将feature_branch_b合并到feature_branch_a分支
git merge feature_branch_b复制代码
远程代码下载合并到当前工作的分支
git pull复制代码
查看代码提交记录
git log
复制代码