
Git
烟雨任平生╰
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git commit 提交规范
代码提交信息的说明,能够使项目在后期协作以及Bug处理时更加容易理解 1、commit message格式 < type >: < subject > 注意:冒号后面有空格 2、type 用于说明 commit 的类别,只允许使用下面7个标识 feature/feat:新功能 fix:修补bug docs:文档(documentation) style: 格式(不影响代码运行的变动) refactor:重构(即不是新增功能,也不是修改bug的代码变动) test:增加测试原创 2022-05-18 09:31:13 · 405 阅读 · 0 评论 -
git clone 时候出现Please make sure you have the correct access rights and the repository exists.问题解决
输入 git clone 命令时出现Please make sure you have the correct access rights and the repository exists.错误,出现改问题的原因是git服务器没有存储本地ssh密钥。 解决步骤: 删除 .ssh 文件夹【C:\Users(本地用户名).ssh】 中的 known_hosts(直接删除即可) 在下载好的Gi...原创 2020-02-10 13:15:20 · 448 阅读 · 0 评论 -
Git常用命令总结
以下是在工作中总结的关于git命令的一些使用方法,仅供参考 克隆到本地: $ git clone git://github.com/jquery/jquery.git(项目地址) 查看远程仓库:$ git remote -v 添加远程仓库:$ git remote add [name] [url] 删除远程仓库:$ git remote rm [name] 修改远程仓库:$ git ...原创 2019-10-09 17:05:29 · 317 阅读 · 1 评论