
git
文章平均质量分 93
AreoWarm
实践才是检验真理的唯一标准
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
push有问题或配置多个git用户,用于不同的项目
1、如果遇到:DeployKey does not support push code, 参考链接:码云 push时提示 DeployKey does not support push code fatal: Could not read from remote repository. 版权声明:「@凌晨三点半」的原创文章------------------start-------------------- 嗯。。。。公钥存错地方了。。。 截图看一目了然 用码云的这个界面肯定很熟悉 ..转载 2020-07-20 13:34:09 · 560 阅读 · 0 评论 -
git 常用命令
添加到自己的分支: 创建分支并切换(xl): git checkout -b xl 1.切换到自己分支: git checkout xl 2.查看状态: git status 3.上传文件: git add . 4.添加描述: git commit -m 'update' 5.添加到对应分支: git push or...原创 2018-08-10 16:36:57 · 357 阅读 · 0 评论