您的位置:首页 > 其它

git flow 常用命令

2017-03-10 16:00 162 查看
1 初始化:    git flow init

在其他分支提交文件

git add  .

 git commit -m '新访问用户数'      提交文件

$ git pull origin develop        从远程分支拉取代码

$ git checkout develop         切换分支

$ git merge --no-ff some-feature    合并分支

$ git push origin develop      推送到远程的分支

具体地址请点击:http://www.jianshu.com/p/fa83b6858d52
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: