git 常用命令

#提交代码到远程分支

git clone git-url

git add file_name

git commit -m ''

git push origin 分支名

合并分支到master

git checkout master

git merge 分支名

git push origin master

原文地址:https://www.cnblogs.com/joy-field/p/13938570.html