git
文章平均质量分 65
好读书的程序员
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git创建分支,提交分支,删除分支的开发流程
1.git branch // 在本地创建了新分支,此分支是基于你现在所在的分支之上的。 ************* ************* ************* *************\|/ ************* ************* ************* *************2.git checkout // 切换到你新创建的分支原创 2013-10-23 19:52:26 · 1147 阅读 · 0 评论 -
git命令行加入自动补齐(auto completion)功能
1.curl -OLhttps://github.com/git/git/raw/master/contrib/completion/git-completion.bash //从github下载bash文件 2.将此文件复制到你自己的用户主目录中,按照下面的示例,还应改名加上点: cp git-completion.bash ∼/.git-completion.bas原创 2013-10-21 10:26:01 · 2688 阅读 · 0 评论 -
A Visual Git Reference
A Visual Git ReferenceOther Languages: Deutsch Español Français Italiano 日本語 한국어 Русский Slovenčina Tiếng Việt 简体中文If the images do not work, you can try the Non-SVG version of this page转载 2014-01-03 13:53:01 · 782 阅读 · 0 评论 -
git 常用命令
1. $ git push -u origin addMeal // addMeal 是我本地的分支名。// 向远程仓库上传本地分支,并使本地分支跟踪远程仓库。而去掉“ -u ”的命令只是向远程仓库添加了分支,本地并未跟//踪。此命令会打印“Branch addMeal set up to track remote branch addMeal from origin.”。原创 2013-10-23 13:17:40 · 811 阅读 · 0 评论
分享