使用github

  1. 注册github帐号,具体我就不说了

  2. new repository(右上角)

  3. create repository(不要勾选Initialize this repository with a README,防止冲突

  4. 下载git(地址http://git-scm.com/download/)

  5. 在terminal 中输入

  6. $ git config --global user.name "your name"
  7. $ git config --global user.email "[email protected]"
  8. 在terminal中输入 

  9. $ ssh-keygen -t rsa -C "your email" // 例如 [email protected]

      然后一路回车,直到生成.ssh/id_rsa.pub文件(.ssh属于隐藏文件夹,显示隐藏文件夹命令是:defaults write     com.apple.finder AppleShowAllFiles -bool true)   

  9.  打开id_rsa.pub文件,复制内容

  10.  在Github上的personal settings栏中选择 ssh keys

  11.   add ssh key (tittle随便写)

  12.   在terminal随便cd到一个文件夹 输入:

echo "# aaaa" >> README.md
git initgit add README.md
git commit -m "first commit"
git remote add origin [email protected]:johngef/aaaa.git   //换成你自己的地址
git push -u origin master

  13.然后打开你的Github上对应的仓库 发现上传成功

  14.从Github上拉代码:

git clone username@host:/path/to/repository


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