2019年2月21日
摘要: //是否是顶级配置文件,设置为true的时候才会停止搜索.editorconfig文件 root = true [*] //缩进方式tab" | "space indent_style = space //缩进大小 indent_size = 4 //编码格式 charset = utf-8 //是 阅读全文
posted @ 2019-02-21 17:38 呼吸able 阅读(161) 评论(0) 推荐(0) 编辑
摘要: git clone ssh 代码: 报错: Warning: Permanently added 'gitee.com,120.55.226.24' (ECDSA) to the list of known hosts. Permission denied (publickey). fatal: C 阅读全文
posted @ 2019-02-21 17:35 呼吸able 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1、(先进入项目文件夹)通过命令 git init 把这个目录变成git可以管理的仓库 2、把文件添加到版本库中,使用命令 git add .添加到暂存区里面去,不要忘记后面的小数点“.”,意为添加文件夹下的所有文件 3、用命令 git commit告诉Git,把文件提交到仓库。引号内为提交说明 4 阅读全文
posted @ 2019-02-21 17:26 呼吸able 阅读(172) 评论(0) 推荐(0) 编辑