拉取代码
git clone https/ssh
查看当前状态
git status
创建分支
git checkout -b 分支名
查看当前分支(列出本地所有分支,当前分支高亮并且前面有*号)
git branch
切换分支
git checkout 分支名
git switch -c 分支名
添加文件
git add .
提交文件
git commit -m ""
提交代码到远程仓库
git push origin 分支名
修改仓库,可以更改origin
git remote add origin http/ssh
查看有多少提交记录(依次是最新的到最旧的)
git log
合并分支
git rebase -i HEAD~4
将代码推送到远程服务器
git push -f
或者 git push -f origin 分支名
删除分支
git branch -d dev //删除本地分支
git push origin --delete dev //删除远程分支