git与gitthub管理项目

gitthub可以托管各种git库,下面介绍怎样使用它来托管自己的代码。

  1. 进入https://github.com/申请帐号
  2. 新建一个repo,点击"Create a new repo",输入项目名称和描述,如下图git与gitthub管理项目_第1张图片
  3. git通过ssh访问资源库,所以需要生成私钥,使用命令:
    ssh-keygen -C 'you email [email protected]' -t rsa
    此时在 ~/.ssh/ 下生成相应的私钥文件
  4. 在gitthub中打开"Account Settings",选择"SSH Key",Title随意填,Key中要输入刚生成的私钥。
  5. 通过ssh -v [email protected]验证是否联通,如下图:git与gitthub管理项目_第2张图片
  6. 在需要gitthub托管的项目下执行以下命令就可以上传工程到gitthub
    git init
    git add .  //添加项目中所有文件
    git commit   //写入提交说明
    git remote add origin [email protected]:yourname/githubtest.git   //后面的地址可通过刚新建的工程看到
    git push origin master

  7. 现在在gitthub上就可以看到项目了。

你可能感兴趣的:(git与gitthub管理项目)