zoukankan      html  css  js  c++  java
  • git 安装及配置

    1.https://github.com/ 注册,略...

    2.创建一个新的工程

    3.下载git客户端,选择git安装目录,略...

    下载地址:https://git-for-windows.github.io/

    4.生成秘钥

    ssh-keygen -t rsa -C "your@email.com"

    成功如下:

     

    5.进入到安装目录下,查看生成的秘钥

     

    6.登录github.com配置秘钥

    链接github确认添加的ssh公共密钥是否有效
    ssh git@github.com

    The authenticity of host 'github.com (192.30.255.113)' can't be established.
    RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
    Are you sure you want to continue connecting (yes/no)? yes
    Warning: Permanently added 'github.com,192.30.255.113' (RSA) to the list of known hosts.
    PTY allocation request failed on channel 0
    Hi xxxuser! You've successfully authenticated, but GitHub does not provide shell access.
    Connection to github.com closed.

    Administrator@USER-20160524DB MINGW64 ~/Desktop

    出现上面所示:

    Warning: Permanently added the RSA host key for IP address '192.30.255.113' to the list of known hosts.

    解决:在hosts文件夹下添加如下:

    192.30.255.113  github.com

    The authenticity of host 'github.com (13.229.188.59)' can't be established.
    RSA key fingerprint is SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8.
    Are you sure you want to continue connecting (yes/no)?

    解决:查看ssy是否存在:$ ls -al ~/.ssh

    重新生成和配置sshkey第4步和第五步

    正常显示如下:

    $ ssh git@github.com
    //正常情况下,回显如下
    PTY allocation request failed on channel 0
    Hi plinx! You've successfully authenticated, but GitHub does not provide shell access.
    Connection to github.com closed.

    7.配置github远程仓库

    如果是第一次配置github远程仓库,需要设置用户名和邮箱,并添加远程地址,给远程仓库起个别名

    git config --global user.name "github用户名"
    git config --global user.email "your_github_email@qq.com"
    git remote add origin( origin:别名) git@github.com:yourName/yourRepo.git

     

  • 相关阅读:
    Nginx 七层反向代理
    Nginx Rewrite域名及资源重定向!(重点)
    对FPM 模块进行参数优化!
    Nginx压力测试及通用优化
    LNMP架构及应用部署!(重点)
    安装PHP解析环境!
    Mysql安装并修改字符集 ----> 基于源码包安装
    Nginx安装部署!
    python入门
    Android学习进度三
  • 原文地址:https://www.cnblogs.com/lichihua/p/9174505.html
Copyright © 2011-2022 走看看