发布流程
1. git checkout master 切换分支
2. git merge v1.5 合并分支
4. git push origin master 把所修改东西提交的主库
3. git tag v201211021049 //打版本标识
5. git push origin v201211021049 //把所打标识推到master
备注:
git tag -f 20101023_publish #加上-f覆盖原有的tag
git tag -d 20101023_publish #删除tag
git push origin 20101023_publish #push 到服务器
git push origin :20101023_publish #从服务器上删除
git push origin --tags #把所有的tag都push到服务器上
Create a new repository on the command line
#touch README.md
git init
git add *
git commit -m "first commit"
git remote add origin https://github.com/liangpz521/cf.git
git push -u origin master
1. git checkout master 切换分支
2. git merge v1.5 合并分支
4. git push origin master 把所修改东西提交的主库
3. git tag v201211021049 //打版本标识
5. git push origin v201211021049 //把所打标识推到master
6.git checkout v201211021049 //此命令是返回tag版本时的代码
备注:
git tag -f 20101023_publish #加上-f覆盖原有的tag
git tag -d 20101023_publish #删除tag
git push origin 20101023_publish #push 到服务器
git push origin :20101023_publish #从服务器上删除
git push origin --tags #把所有的tag都push到服务器上
Create a new repository on the command line
提交本机已有的项目到git
假如我在github.com服务器个创建了一个cf的项目,同时我本机也有一个已存在的cf项目 如何把我本机的cf项目提交到github中cf项目中呢
下面我介绍下我个人的做法:
#touch README.md
git init
git add *
git commit -m "first commit"
git remote add origin https://github.com/liangpz521/cf.git
git push -u origin master