Git简单操作 git简单操作 更多可以参考 Git-基础-远程仓库的使用 1.创建本地仓库 初始化一个Git仓库 git init 把文件添加到仓库 git add . .表示添加所有文件 把文件提交到仓库 git commit -m "wrote a readme file" 2.配置ssh key 配置git用户信息 $ git conf… 技术 | 2023-3-04 17:36 Git