
git
文章平均质量分 56
mt_lixinzeng
Robotics,Android和U3D开发工程师.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git配置,提交代码到远程仓库
1.设置用户名git config --global user.name '用户名'2.设置用户名邮箱git config --global user.email '邮箱'3.查看设置git config --list4.初始化git init5.查看状态git status6.生成id_rsa.pubssh-keygen -t rsa -C "邮箱"...原创 2018-08-07 18:32:51 · 897 阅读 · 0 评论 -
Git clone问题:Unable to negotiate with *.*.*.*: no matching key exchange methodfound...
在Ubuntu16.04上使用git clone 项目出现:unable to negotiate with *.*.*.*: no matching key exchange methodfound. Their offer: diffie-hellman-group1-sha1解决方法:export GIT_SSH_COMMAND='ssh -o KexAlgorithms=+di...原创 2018-11-27 17:17:27 · 5533 阅读 · 2 评论 -
ERROR: missing Change-Id in commit message footer
你用 git push 向 gerrit 提交了待审核代码,出现下面的情况:remote: Resolving deltas: 100% (3/3)remote: Processing changes: refs: 1, done remote: ERROR: missing Change-Id in commit message footerremote:remote: Hin...原创 2018-12-10 11:49:23 · 2515 阅读 · 0 评论