zoukankan      html  css  js  c++  java
  • 码云安装SSH私钥步骤

    1.在git官网下载对应版本的git 并按提示安装;

    2.安装成功后打开git Bash 设置用户名和邮箱

        git config --global user.name "YourName" 

        git config --global user.email "email@example.com"

    3.生成SSH Key

       在git Bash 中输入ssh-keygen -t rsa -C "email@example.com",连按三次enter键,会看到生成了 一个id_rsa.pub文件

    4.登录码云并添加密钥

    在提示的文件目录下打开id_rsa.pub文件(或在git Bash中执行 cat id_rsa.pub命令)复制全部内容到码云添加密钥

    5.测试是否连接成功

    git Bash中输入: ssh -T git@git.oschina.net, 返回 Welcome to Git@OSC, yourname!则成功

  • 相关阅读:
    502 bad gateway错误的网关
    nodejs发展
    edgejs
    websocket nodejs实例
    nodejs原码
    node案例
    node 与php整合
    node c#
    jquery
    express
  • 原文地址:https://www.cnblogs.com/bbjs/p/13190133.html
Copyright © 2011-2022 走看看