码迷,mamicode.com
首页 > 其他好文 > 详细

git项目实战常用workflow和命令

时间:2015-05-28 12:18:05      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

一个从无到有的项目大体经历-创建项目目录,创建repo,配置过滤集,配置git user,导入已有基础代码入库,将库放到central去,建立分支,修改代码,checkin代码,分支上

测试验证代码,merge稳定代码回主线,打tag,push到中央库分享

   mkdir app
   cd app
   git init
   cd .git
   vi description
   cd info
   sudo vi exclude

   cd ../../ (app目录)
   git add --all
   git commit

   git remote add origin https://xxx@github.com/xxx/yyy.git

   git push origin master

   git branch yin_ui_change
   git branch -a
   git checkout yin_ui_change
   git commit -a -m "your commit msg"
   git checkout master
   git merge yin_ui_change
   git status

git项目实战常用workflow和命令

标签:

原文地址:http://www.cnblogs.com/kidsitcn/p/4535411.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!