Git常用操作指南
首先创建一个git账号
git config --global user.name "Your Name"
git config --global user.email "email@example.com"
创建SSH key
ssh-keygen -t rsa -C “liujr206@outlook.com”
1.Git库的创建和文件添加
首先创建文件夹,切换进文件夹目录
初始化仓库:git init
添加文件到Git仓库
使用命令git add <file>, 注意
原创
2022-02-25 00:56:32 ·
153 阅读 ·
0 评论