git
左手江湖
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git下载地址
下载传送门 git-for-windows Mirror原创 2021-10-29 21:20:57 · 128 阅读 · 0 评论 -
git 本地,远程做了不同的修改,同步方法
1,git stash 缓存本地修改的代码 2,git stash list 查看本地缓存代码片段 3,git pull 拉取远程代码原创 2021-10-22 16:36:42 · 579 阅读 · 0 评论 -
github访问慢的解决方案
1. 修改本地hosts文件 windows系统的hosts文件的位置如下:C:\Windows\System32\drivers\etc\hosts mac/linux系统的hosts文件的位置如下:/etc/hosts 2. 增加http://github.global.ssl.fastly.net和http://github.com的映射 获取Github相关网站的ip 访问https://www.ipaddress.com,拉下来,找到页面中下方的“IP Address Tools – .原创 2021-05-24 22:57:44 · 159 阅读 · 0 评论 -
git升级遇到的错误
C:\Users\Administrator>git update-git-for-windows 升级git命令 Git for Windows 2.27.0.windows.1 (64bit) Update 2.31.1.windows.1 is available Download and install Git for Windows 2.31.1 [N/y]? y curl: (56) OpenSSL SSL_read: Connection was reset, errno 1005...原创 2021-04-01 10:04:42 · 1310 阅读 · 0 评论 -
tortoisegit pull时报错
解决方法 在本地repository目录下打开gitbash,分别输入如下指令 git config --global push.default current git push -u原创 2020-12-19 00:29:20 · 298 阅读 · 1 评论 -
tortoiseGit推送每次需要输入密码,解决方案
当你配置好git后,在C盘个人用户目录下有一个 .gitconfig 的文件,里面会有你先前配好的name 和email,只需在下面加2行 [credential] helper = store 如果拉取的时候提示认证失败 执行命令git config --system --unset credential.helper ...原创 2020-12-18 23:17:00 · 763 阅读 · 1 评论
分享