Github 教程

Github 教程

账号注册与客户端安装

  1. 注册Github账号,官网 [Github].
  2. 下载安装git客户端。 windows上可到 Git for windows官网下载。mac系统下载git客户端下载.
    unbutu 可用命令
    sudo apt-get install git

配置Git

  1. 首先在本地创建ssh key:

    ~$ ssh-keygen -t rsa -C “[email protected]

    之后会要求输入路径和密码,按回车默认即可。成功的话会在~/下生成.ssh文件夹,进去,打开id_rsa.pub,复制里面的key。回到github,进入Account Settings,左边选择SSH Keys,Add SSH Key,title随便填,粘贴key。

验证是否成功

$ ssh -T [email protected]

如果出现以下提示,则表示连接成功。

Hi jeanphorn! You’ve successfully authenticated, but GitHub does not provide shell access.

设置username和email,github每次commit都会记录他们。

$ git config –global user.email “[email protected]

$ git config –global user.name “your name”

创建仓库

在github下建自己的Repository。

Repository name: 自己要建的工程名。
Description:对工程的描述。
选择Public。
点击 “Create repository”。

提交和上传工程

$ touch README.md

$ git init //初始化本地仓库

$ git commit -m “first commit” //提交到要地仓库,并写一些注释了一个名叫origin的别名

$ git remote add origin [email protected]:yourName/youProject.git

$ git push -u origin master //将本地仓库的东西提交到地址是origin的地址,master分支下

如果想查看工程的同步状态,可使用如下命令

$ git status

Github 教程_第1张图片

你可能感兴趣的:(github使用)