文章链接
安装Git十分的简单。以下给出个版本的安装方法,是从官方网站上COPY过来
Debian/Ubuntu
$ apt-get install git
Fedora
$ yum install git (up to Fedora 21)
$ dnf install git (Fedora 22 and later)
Gentoo
$ emerge --ask --verbose dev-vcs/git
Arch Linux
$ pacman -S git
openSUSE
$ zypper install git
FreeBSD
$ cd /usr/ports/devel/git
$ make install
Solaris 11 Express
$ pkg install developer/versioning/git
OpenBSD
$ pkg_add git
安装完成后,要配置一下信息,在commit的时候都会添加作者信息。
$ git config --global user.name "Your Name"
$ git config --global user.email "email@example.com"
非必须
在root用户下添加ssh公钥
$ ssh-keygen -t rsa
or
$ ssh-keygen -t rsa -C "your_email@youremail.com"
创建成功后会在~/.ssh/目录下生成
id_rsa id_rsa.pub known_hosts
配置Git服务器的步骤
- 首先是创建一个git用户来管理仓库。
$ useradd git
$ passwd git
然后选择一个目录作为放仓库的目录。。。我直接就用git用户的home目录了。
在home目录下创建一个空的仓库
[root@croot git]# git init --bare example.git
Initialized empty Git repository in /home/git/example.git/
这是个原始的仓库,连master分支都没有,在首次clone后进行一次commit后用git branch 就可以看到master了
需要注意,因为我是用root用户创建的仓库,使用需要将创建的仓库的拥有者改为git, 我比较懒,每次我都是直接更改整个git目录的。。。
[root@croot git]# chown git:git -R /home/git
到了这一步,其实就可以用git clone使用了。
因为我的ssh的22端口被禁用了,默认的ssh的端口是其它的,例如我的是sshport是38389,所以我的使用方法是这样的
$ git clone ssh://git@ooly.club:38389/~/example.git
or
$ git clone ssh://git@ooly.club:38389/home/git/example.git
然后输入git用户的密码就可以正常操作了。
ooly.club是我的域名,如果你的服务器没有域名,或者是本地克隆本地的就可以直接用127.0.0.1或者你服务器的公网地址。
如果嫌弃每次pull,push都要输入密码的话,可以研究下ssh公钥这里。
Git常用的命令
-remote
-v 查看分支
[xxx@croot linux_stu]$ git remote -v
gitOrigin git@github.com:pzyyll/linux_study.git (fetch)
gitOrigin git@github.com:pzyyll/linux_study.git (push)
origin ssh://git@pzyyll.cc:xxx/~/linux_stu.git (fetch)
origin ssh://git@pzyyll.cc:xxx/~/linux_stu.git (push)
add 添加远程仓库
例如上面的 gitOrigin 便是通过以下命令添加的
git remote add gitOrigin git@github.com:pzyyll/linux_study.git