git Bash here 使用方法记录
1.查看分支
git branch -a(查看所有分支)
2.提交分支
git add .(提交到暂存区)
git commit -m'备注' 提交
3.合并分支
git merge test(test为要提交的分支名)
出现图下问题时:
1.insert
2.esc
3.:wq
4.查看状态是否有冲突
git status(可以看到是否有冲突)
5.解决冲突(没有忽略)
编辑器解决冲突
git add . 提交
git commit -m '备注'
6.拉取最新代码
git pull
7.推送代码
git push
8.其他操作
8.1克隆代码
git clone gite地址
8.2 新建分支
git checkout -b test(新建并切换分支 test为新建分支名称)