准备工作
在github.com网站注册账号,注册比较简单,傻瓜式操作直到注册完成
在网页上新建一个repository,取名test
在windows下配置和使用git
1. 在windows.github.com下载windows下的git客户端,并安装
2. 安装完后打开github快捷方式图标,进入登陆账号,git会自动将本地的ssh key添加到账号里(网页上登陆账号,在设置里可以看到添加的key),如果没有添加成功可以根据第3步里的步骤添加。
3. 添加ssh-key
$ cd ~/.ssh
$ ssh-keygen -t rsa -C "emailaddress"(emailaddree此入添写你自己的邮箱地址)
然后将id_rsa.pub中的key手动在网页上添加到账户里。
至此配置完成
4. 在本地建一个目录,测试一下
$ cd ~
$ mkdir test
$ cd test
$ git clone git@github.com:username/test (同步刚刚新建的repository)
$ touch testfile
$ git add testfile
$ git commit -m "test"
$git push (将代码推送到代码库中)
至此已经将代码同步到代码库,可以到网页上查看刚刚的test下面是不是多了一个test文件。
git在linux上的配置
1. linux上需要先安装git,centos系统默认是安装的,可以在终端输入git 命令看看有没有安装
2. 创建ssh-key
$ cd ~/.ssh
$ ssh-keygen -t rsa -C "emailaddress"(emailaddree此入添写你自己的邮箱地址)
同样将生成的key添加到网页上的key里
3. 设置账户信息
git config --global user.name "username"
git config --global user.email xxx@xxx.com
4. 测试
$ cd ~
$ mkdir test
$ cd test
$ git clone git@github.com:username/test (同步刚刚新建的repository)
$ touch testfile
$ git add testfile
$ git commit -m "test"
$git push (将代码推送到代码库中)
在网页上看到测试的文件表示测试成功。