码迷,mamicode.com
首页 > 其他好文 > 详细

github学习步骤

时间:2015-04-25 22:26:49      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

组员1:    王文政      201303011159

作业网址 :https://github.com/1246251747/3/blob/master/jjj.txt

心得:

1.  申请github账号 。 例如:名字:ss,邮箱:xxxx;

2.  在git-scm.com上下载Git ;

3.  下载完成后打开git Bash;

4.  在 git bash中输入:

     $ git config --global user.name"ss"。

     $ git config --global user.email"xxxx"。

      $mkdir     一个文件名  。

     $git init

5.   建立ssh key

      再接着输入:

      $ ssh-keygen    -C   "xxxx"  -t   rsa    

      关闭它

      之后 在用户主目录里找到.ssh目录,找到id_rsa.pub文件,

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

      登陆GitHub,打开右上角的settings,在出现页面的左边打开“SSH Keys”页面:

      “Add SSH Key”,填上任意Title,在Key文本框里粘贴id_rsa.pub文件的内容 ,就设置好key了。

6.   在github网站里new repository   写上任意名字、注释就行了。

7.    再右击以git  bash格式打开要保存的内容文件  ,输入: 

      $ git init  

      $ git add    --all

      $ git commit -m "任意"

   $ git remote add origin https://github.com/1246251747/ggg.git
   $  git push -u origin master

   

成功后,github和你本地的仓库已经关联,你的代码已经上传上去了!

github学习步骤

标签:

原文地址:http://www.cnblogs.com/lovewangwenzheng/p/4456769.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!