美文网首页
GitHub 创建步骤及问题

GitHub 创建步骤及问题

作者: 我爱麦芽糖 | 来源:发表于2017-09-26 09:24 被阅读0次

    安装github

    1. 下载官网
      git window 64
      git window 32
      git mac 64
      git mac 32
    2. 安装后右键点击 Git Bash Here
    git.png

    输入以下命令进行配置

    $git config --global user.name "yourname"
    $git config --global user.email "youremail@example.com"
    $git config --global user.editor yourdeitor
    

    关于github ssh创建问题

    1. 查看当前计算机是否已经有ssh
    $ cd ~/.ssh
    
    1. 查看ssh文件夹下文件
    $ ls -la
    
    1. 如果有 id_rsa , id_rsa.pub,known_hosts 则删除
    $ rm  id_rsa
    $ rm id_rsa.pub
    $ rm known_hosts
    
    1. 生成自己的ssh-key
    $ ssh-keygen -t rsa -C "****@163.com"
    Generating public/private rsa key pair.
    Enter file in which to save the key (/c/Users/ycx/.ssh/id_rsa):
    Enter passphrase (empty for no passphrase):
    Enter same passphrase again:
    Your identification has been saved in /c/Users/ycx/.ssh/id_rsa.
    Your public key has been saved in /c/Users/ycx/.ssh/id_rsa.pub.
    The key fingerprint is:
    SHA256:vOdSmPCEWy5scBMIFRQHUEQXFDQ//B/iXxIW3Cr5fqM ycxadr@163.com
    The key's randomart image is:
    +---[RSA 2048]----+
    |  oOXBOo         |
    |    .o.+   . .   |
    |       o+   o .  |
    ![ssh.png](https://img.haomeiwen.com/i8030893/5d01460e0d299bb6.png?imageMogr2/auto-orient/strip%7CimageView2/2/w/1240)
    
    |    . =.oo . o   |
    |     + OSo= =    |
    |      = =o.* o   |
    |     . ...o + .  |
    |        .o o oo  |
    |         .. Eo . |
    +----[SHA256]-----+
    
    1. 添加到github,点击setting进入设置界面
      setting.png
      然后进入ssh设置
      ssh.png
      新建点击new ssh key
    sshkey.png

    将id_rsa.pub中内容复制进去


    sshcontext.png

    创建自己的repository

    • 在Github创建自己的仓库,点击 New repository
    图片1.png
    • 创建成功后,在自己本地目录打开 git bash下输入以下命令

    创建git 仓库
    git init
    创建自己的忽略文件
    touch .gitignore/
    创建README.md
    echo "ssd" >>README.md
    添加所有文件到索引
    git add -A
    提交changes
    git commit -m "first"
    添加服务器 git@.....是你的ssh路径
    git remote add origin git@github.com********
    提交到服务器,“master”是你的branchname
    git push -u origin master

    android 工程忽略文件如下:

    /build
    /app/.externalNativeBuild
    /.gradle
    /gradle
    /.idea
    /*.iml
    

    相关文章

      网友评论

          本文标题:GitHub 创建步骤及问题

          本文链接:https://www.haomeiwen.com/subject/gwjzsxtx.html