标签:
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
标签:
原文地址:http://www.cnblogs.com/littletail/p/5249885.html