码迷,mamicode.com
首页 > 系统相关 > 详细

[Git] MAC上Git初探

时间:2016-03-13 23:58:18      阅读:372      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!