
git
文章平均质量分 81
zhubinqiang
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git Server搭建
在CentOS6.4上搭建gitosis 参考https://github.com/res0nat0r/gitosis 创建git账号 sudo useradd –m git sudo passwd git # 为git设置密码 su - git chmod -R 755 /home/git 安原创 2015-06-03 16:32:54 · 655 阅读 · 0 评论 -
git 基本命令
1. 获取帮助 man git-*** man git-commit man git-pull man git-merge 2. 提交个人信息 git config –global user.name “yourname” git config –global user.email “[email protected]” 3.开启新项目并初始化 cd myproje原创 2014-02-08 14:10:35 · 687 阅读 · 0 评论 -
git 基本用法
参考于http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000Linux下获取帮助man git-*** man git-diff man git-checkoutgit help <command> # 显示command的help配置git config --global user.na原创 2015-07-12 22:39:17 · 660 阅读 · 0 评论