
git
zhangchao19890805
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
【010】github的win7版本无法登录问题解决办法
如果您的.net版本低于 .NET 4.5.1 ,您可以尝试原创 2014-05-15 21:16:05 · 1346 阅读 · 0 评论 -
【038】使用git commit命令时遇到 fatal: Unable to create index.lock File exists 错误的解决办法
一、问题描述使用git commit 命令提交代码,遇到下面的错误:$ git commit -m 'Test'fatal: Unable to create 'D:/MyProject/.git/index.lock': File exists.If no other git process is currently running, this probably means agit proc翻译 2016-09-05 14:16:55 · 16180 阅读 · 0 评论 -
【030】git常用命令
项目根目录,右键点击 Git Bash Here。 git status: 查看哪些文件被改变。 git add –all: 添加所有被改变的文件。 git commit -m ‘some words’: 提交所有已经添加到文件。 git pull : 更新整个项目,需要输入用户名和密码。 git push origin master: 把本地代码推送到远程代码服务器上。原创 2016-05-25 14:59:49 · 880 阅读 · 0 评论 -
【129】Git用户名和密码输错后,再执行命令总是报 fatal: Authentication failed for 错误的解决方法
原文地址解决办法:git config --system --unset credential.helper之后你在push就会提示输入名称和密码转载 2018-11-08 16:00:07 · 1898 阅读 · 0 评论