首页 > 系统服务 > 详细

[Git] MAC上Git初探

时间:2016-03-13 23:56:03      阅读:516      评论:0      收藏:0      [点我收藏+]

1、基本设置,包括用户名、邮箱、编辑工具、查看设置、帮助等

$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
$ git config --global core.editor vim
$ git config --list
$ git help xxx(如config)

2、创建第一个Git库

$ git init

本地git维护由三棵树组成,Working dir --add--> Index --commit--> HEAD

这样就OK了,如果想要开始第一次对已有文件版本管理,那么输入指定文件如*.c

$ git add *.c  //放入缓存Index
$ git commit -m ‘initial project version‘ //缓存提交到HEAD
$ git push origin master //本地仓库的HEAD提交到远端仓库
  $ git remote add origin <server> //指定提交的仓库服务器

3、将http或者其他远程的库拷贝到本地

$ git clone https://github.com/libgit2/libgit2
$ git clone https://github.com/libgit2/libgit2 libdir

Exampale uses https:// protocol, but you may also see git:// or  user@server:path/to/repo.git

 

[Git] MAC上Git初探

原文:http://www.cnblogs.com/littletail/p/5249885.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!