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

github的使用

时间:2016-09-16 18:27:55      阅读:210      评论:0      收藏:0      [点我收藏+]

标签:

1.gitbub概念

    github是一个基于git的代码托管平台,付费用户可以建私人仓库,免费用户用公共仓库,但是代码公开。

2.注册账户以及创建仓库

    在github官网地址:https://github.com/ 注册自己的账户。 之后就可以创建仓库。

3.配置Git

    启动Git Bash命令行,输入命令。

    1>首先在本地创建ssh key:  ssh-keygen -t rsa -C "your_email@youremail.com"

       一路回车就行,在生成的~/user/username/.ssh/id_rsa.pub里,复制里面的key

    2>验证是否成功:ssh -T git@github.com

       如果是第一次的会提示是否continue,输入yes看到:You‘ve successfully authenticated, but GitHub does not provide shell access。就表示已成功连上github。

   3>设置username和email:

       $ git config --global user.name "your name"

       $ git config --global user.email "your_email@youremail.com"

    4> 添加远程地址:

      git remote add origin git@github.com:yourName/yourRepo.git

     进入.git,打开config,这里会多出一个remote "origin"内容,这就是刚才添加的远程地址,也可以直接修改config来配置远程地址。

    如果出现有错误:fatal: remote origin already exists.

    解决办法如下:

       a. 先输入$ git remote rm origin

       b. 再输入$ git remote add origin git@github.com:djqiang/gitdemo.git 就不会报错了!

       c. 如果输入$ git remote rm origin 还是报错的话,error: Could not remove config section ‘remote.origin‘. 我们需要修改gitconfig文件的    内容

     d. 找到你的github的安装路径,我的是    C:\Users\ASUS\AppData\Local\GitHub\PortableGit_ca477551eeb4aea0e4ae9fcd3358bd96720bb5c8\etc

     e. 找到一个名为gitconfig的文件,打开它把里面的[remote "origin"]那一行删掉就好了!

    如果出现错误:Not a git repository (or any of the parent directories): .git

   解决办法如下:输入$ git init

 

github的使用

标签:

原文地址:http://www.cnblogs.com/toby-zhang/p/5876790.html

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