git 配置

git 配置

生成key

1
ssh-keygen -t rsa -b 4096 -C "your_email@domain.com"

初始操作

  • 进入代码文件夹
    1
    2
    3
    4
    5
    6
    git init
    git add .
    git commit -m "what you want to say"
    git remote add origin http://github.com/用户名/仓库名.git
    git push -u origin master


git 配置
http://home.ustc.edu.cn/~ustcxwy0271/2022/03/31/git-setting/
作者
Xu Weiye
发布于
2022年3月31日
许可协议