zoukankan      html  css  js  c++  java
  • Git初始化基本操作

    查看自己用户名和邮箱地址:

    $ git config user.name
    $ git config user.email

    修改自己用户名和邮箱地址:

    git config --global user.name xxx
    git config --global user.email xxxx@163.com

    生成ssh秘钥:

    ssh-keygen -t rsa -C "xxx@163.com"

    参考:

    【1】https://www.cnblogs.com/wyhlightstar/p/6283517.html

    【2】https://blog.csdn.net/xb12369/article/details/78682018

  • 相关阅读:
    isequal 和startswith 使用
    UVa10340
    UVa1368
    UVa455
    UVa1225
    UVa1586
    UVa 1585
    UVa10082
    UVa272
    NYOJ1
  • 原文地址:https://www.cnblogs.com/happyflyingpig/p/12097200.html
Copyright © 2011-2022 走看看