文章分类 - git
摘要:本文所有内容来自:https://www.cnblogs.com/eedc/p/6168430.html 1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库 git init 2、把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的
阅读全文
摘要:git的使用 初次安装git配置用户名和邮箱 你需要运行命令来配置你的用户名和邮箱: $ git config --global user.name "superGG1990" $ git config --global user.email "superGG1990@163.com" 注意:(引号
阅读全文