zoukankan      html  css  js  c++  java
  • GIT生成 SSH Key步骤

    //设置user.name和email 提交到git之后会显示用户名(在随意一个目录打开git-bash执行就行)
    Administrator@DESKTOP-BP3H0HS MINGW64 /d/midou (master) $ git config --global user.name "liuchao" Administrator@DESKTOP-BP3H0HS MINGW64 /d/midou (master) $ git config --global user.email "liuchao102@163.com"
    //生成秘钥 Administrator@DESKTOP-BP3H0HS MINGW64 /d/midou (master) $ ssh-keygen -t rsa -C "liuchao102@163.com"
    Generating public/private rsa key pair. Enter file in which to save the key (/c/Users/Administrator/.ssh/id_rsa): /c/Users/Administrator/.ssh/id_rsa already exists. Overwrite (y/n)? y Enter passphrase (empty for no passphrase): Enter same passphrase again: Your identification has been saved in /c/Users/Administrator/.ssh/id_rsa. Your public key has been saved in /c/Users/Administrator/.ssh/id_rsa.pub. The key fingerprint is: SHA256:N20m0PnwfNSZZaCOvp8gW8Fac49kIQo1fUMz+490AO8 “liuchao102@163.com The key's randomart image is: +---[RSA 2048]----+ | o. .= ..o| | . o..oB o+| | . . =.+.+o.| | . + X = . | | S X % E .| | = @ = + | | o + . o .| | + o . | | . ..o | +----[SHA256]-----+ Administrator@DESKTOP-BP3H0HS MINGW64 /d/midou (master) $

    转载自:https://www.cnblogs.com/liuchao102/p/5805582.html
  • 相关阅读:
    QPushbutton样式
    qt调动DLL
    QLabel设置行间距
    Qt 5.2.1 applications (32 bit) in CentOS (64 bit with gcc 4.8.2)
    qt设置阴影效果
    ubuntu命令
    How to configure NFS on Linux
    gsoap生成onvif c++源码
    QUrl乱码问题
    QTableWidget自适应标题(铺满、可调节)
  • 原文地址:https://www.cnblogs.com/zhangyuanbo/p/11208113.html
Copyright © 2011-2022 走看看