Git,GitHub的基本使用

11 篇文章 0 订阅
8 篇文章 0 订阅

By BearsG

- 建立git与github之间的联系,使本地的文件能上传到github上

(1) 在自己的github上创建一个仓库(初始化)

      在vim上新建一个文件夹并使之进入git状态:
      * mkdir firstFile
      * cd firstFile
      * git init

(2) 让git认识自己

     * git config --global user.email "BearsG@BearsG.com该邮箱地址必须和github上邮箱一样)
     * git config --global user.name "BearsG" (名字和github上的用户名一样)

(3) 生成密匙

      ssh-keygen -t rsa -C "BearsG@BearsG.com"
      显示如下代码:
        Generating public/private rsa key pair.
        Enter file in which to save the key (user/home/.ssh/id_rsa):   //此处是.ssh 的路径,可以更改或默认在当前路径
        Enter passphrase (empty for no passphrase):   //此处写生成密匙的密码
        Enter same passphrase again:  //在次输入密码

(4) 提交密匙

      * users/.ssh/id_rsa.pub 打开id_rsa.pub(cat id_rsa.pub) ,并复制里面的密匙
      * 打开github -> Eidting profile -> SSH KEY ,将复制的密匙加到KEY里面

(5) 检验是否链接上github

      * 打开vim
      * ssh git@github.com
      正常情况下显示
        PTY allocation request failed on channel 0
        Hi candy! You've successfully authenticated, but GitHub does not provide shell access
        Connection to github.com closed.
  (6) 推送文件到github
      * 进入已创建的firstFile文件,
      * git remote add origin git@github.com:BearsG/tmp.git
      * clone github上的库:git clone + 仓库地址(git clone https://github.com/BearsG/repository.git) 
      * 把仓库加进本地git里:git add repository
                          git commit -m "clone 了仓库"
      * 进入仓库:cd repository
      * touch first.c
      * git add first.c
      * git commit -m "set up first.c"
      * git push origin master

   至此git,github的链接以成功并可以给github上传文件!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值