1. 新建分支 xxx
2. git pull (目录下 命令行将线上分支拉倒本地)
3. git checkout xxx (切换到到该分支 )
(可使用 git status 查看目前处于哪一个分支)
4. 然后 coding...
5. git add . (有个英文状态的句号!!!)
6.git commit -m 'qw4awe' (提交,-m ''提示信息)
7. git push
8. git checkout master (回到主分支)
9. git merge xxx (将该分支合并到主分支上)
10. git push
ps. 当新建并打开分支时发现某一个分支的内容不见了,只需要在当前分支下 git merge 消失的分支