码迷,mamicode.com
首页 > 其他好文 > 详细

Git之1——安装和基本仓库的初始化

时间:2015-08-08 13:35:02      阅读:128      评论:0      收藏:0      [点我收藏+]

标签:

1,centos安装Git
  1. yum install git-core

?2,Git配置

    ?配置邮件和用户名,在提交代码的时候会展示。这个设置是全局设置。

  1. [root@localhost ~]# git config --global user.name "lj"
  2. [root@localhost ~]# git config --global user.email "lj@test.com"

配置完成后,会在home下新建一个隐藏文件夹。

  1. [root@localhost ~]# ls -la | find ~/.git*
  2. /root/.gitconfig

去掉global参数,即可设置当前用户对应的用户名和邮箱。

3,clone仓库

    ?我们可以通过ssh://,http(s)://,git://三种url来获取一个远程git仓库。

    ?获取git源码。

  1. git clone git://git.kernel.org/pub/scm/git/git.git
4,初始化新仓库

    ?通过git init命令来初始化一个git仓库

  1. [root@localhost ~]# mkdir code
  2. [root@localhost ~]# cd code
  3. [root@localhost code]# mkdir project_test
  4. [root@localhost code]# cd project_test/
  5. [root@localhost project_test]# touch t1.txt t2.txt
  6. [root@localhost project_test]# ls
  7. t1.txt t2.txt
  8. [root@localhost project_test]# git init
  9. Initialized empty Git repository in /root/code/project_test/.git/

ls -la命令可以查看到对应的隐藏文件夹。

  1. [root@localhost project_test]# ls -la
  2. 总用量 12
  3. drwxr-xr-x. 3 root root 4096 8 7 21:45 .
  4. drwxr-xr-x. 3 root root 4096 8 7 21:44 ..
  5. drwxr-xr-x. 7 root root 4096 8 7 21:45 .git
  6. -rw-r--r--. 1 root root 0 8 7 21:45 t1.txt
  7. -rw-r--r--. 1 root root 0 8 7 21:45 t2.txt
  8. [root@localhost project_test]#
?

参考:http://gitbook.liuhui998.com/

版权声明:本文为博主原创文章,未经博主允许不得转载。如有问题,欢迎交流。

Git之1——安装和基本仓库的初始化

标签:

原文地址:http://blog.csdn.net/mergades/article/details/47357471

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!