1,centos安装Git
yum install git-core
?2,Git配置
?配置邮件和用户名,在提交代码的时候会展示。这个设置是全局设置。
[[email protected] ~]# git config --global user.name "lj"
[[email protected] ~]# git config --global user.email "[email protected]"
配置完成后,会在home下新建一个隐藏文件夹。
[[email protected] ~]# ls -la | find ~/.git*
/root/.gitconfig
去掉global参数,即可设置当前用户对应的用户名和邮箱。
3,clone仓库
?我们可以通过ssh://,http(s)://,git://三种url来获取一个远程git仓库。
?获取git源码。
git clone git://git.kernel.org/pub/scm/git/git.git
4,初始化新仓库
?通过git init命令来初始化一个git仓库
[[email protected] ~]# mkdir code
[[email protected] ~]# cd code
[[email protected] code]# mkdir project_test
[[email protected] code]# cd project_test/
[[email protected] project_test]# touch t1.txt t2.txt
[[email protected] project_test]# ls
t1.txt t2.txt
[[email protected] project_test]# git init
Initialized empty Git repository in /root/code/project_test/.git/
ls -la命令可以查看到对应的隐藏文件夹。
[[email protected] project_test]# ls -la
总用量 12
drwxr-xr-x. 3 root root 4096 8月 7 21:45 .
drwxr-xr-x. 3 root root 4096 8月 7 21:44 ..
drwxr-xr-x. 7 root root 4096 8月 7 21:45 .git
-rw-r--r--. 1 root root 0 8月 7 21:45 t1.txt
-rw-r--r--. 1 root root 0 8月 7 21:45 t2.txt
[[email protected] project_test]#
?
参考:http://gitbook.liuhui998.com/
版权声明:本文为博主原创文章,未经博主允许不得转载。如有问题,欢迎交流。
时间: 2024-10-23 21:49:07