标签:五步掌握git的基本开发使用命令 git常用命令 git git rm
git config --global user.name "gang.li" git config --global user.email "ligang@ptthink.com"
/* 创建项目文件夹,并初始化仓库 */ mkdir ptengine_cn cd ptengine_cn git init /* 新增README文件,并提交*/ touch README git add README git commit -m 'first commit' /* 关联远程仓库,并推送 */ git remote add origin git@git.ptengine.jp:ptgitlab/ptengine_cn.git git push -u origin master
git clone git@git.ptengine.jp:ptgitlab/ptengine_jp.git git checkout -b develop git branch --set-upstream develop origin/develop(git branch --set-upstream-to=origin/develop develop)
/* 删除文件(git rm 本地文件并不会被删除) */ git rm -rf target git add . git commit -m "claer" git push origin develop
/* 查看所有分支 */ git branch -r/-a /* 合并develop到master分支 */ git checkout master git merge --no-ff develop git push origin master默认情况下,Git执行"快进式合并"(fast-farward merge),会直接将Master分支指向Develop分支。使用--no-ff参数后,会执行正常合并,在Master分支上生成一个新节点。
(3)git merge --help
标签:五步掌握git的基本开发使用命令 git常用命令 git git rm
原文地址:http://blog.csdn.net/ligang2585116/article/details/46325047