
VCS
MikeoLeo
这个作者很懒,什么都没留下…
展开
-
Git 常用命令 - Tag
[b]显示所有标签[/b] [code="shell"]$ git tag v0.1-alpha v0.1.1-alpha v2.0.0.1000-release[/code] [b]显示符合条件的标签[/b] [code="shell"]$ git tag -l 'v0.1*' v0.1-alpha v0.1.1-alpha [/code] [b]在本地新建标签[/b] [...原创 2017-10-12 11:38:09 · 165 阅读 · 0 评论 -
Git 常用命令 - Branch
[b]概念[/b] Git 中的分支,其实本质上仅仅是个指向 commit 对象的可变指针。Git 会使用 master 作为分支的默认名字。 [b]显示所有分支[/b] [code="shell"]$ git branch branch_test branch_test2 * master[/code]说明:* 代表当前工作分支 [b]创建分支[/b] [cod...2017-10-26 09:49:37 · 226 阅读 · 0 评论 -
Git 如何初始化项目
A simple command-line tutorial: Git global settings: [code="shell"]git config --global user.name "your user name" git config --global user.email "your email"[/code] [b]Create git repository:[/...原创 2017-11-29 14:00:27 · 466 阅读 · 0 评论