git 命令使用


1、下载代码

git clone '项目地址'

2、切换分支

git checkout -b '分支名称'

3、提交代码

git add .
git commit -m '描述'
git push origin '分支名称'

4、合并分支

git merge '分支名称'