首页 > 代码库 > Git使用

Git使用

使用git将代码上传至github

1、在github中创建一个Repository

2、在setting的deploy中粘贴本地生成的id_rsa.pub

3、测试ssh远程连接是否成功:

ssh -T git@github.com

提示:‘You’ve successfully authenticated, but GitHub does not provide shell access‘ 说明连接成功。

4、安装git本地客户端:

使用homebrew工具安装

1)安装homebrew:(homebrew官网:http://brew.sh/)

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2)安装git:

brew install git

5、建立本地git仓库:

在本地项目根目录下:

git init

6、将项目所有文件添加到待上传文件列表中:

git add .

若只想添加某一个文件,只需将.换成相应文件名。

7、设置全局用户和邮箱:

git config --global user.email "ahaii@sina.com"

git config --global user.name "ahaii"

8、将文件commit到仓库:

git commit -m 描述

9、本地仓库关联github:

去github上新创建的repository中复制ssh地址(https://github.com/ahaii/....git)。

git remote add origin https://github.com/ahaii/testblog.git

10、上传代码到github:

git push -u origin master

会要求输入github的用户名和密码。

以上就是将本地代码上传到github的过程。

Git使用