crifan 5年前 (2020-02-03) 7664浏览 0评论
自己的mac中,之前弄了:
【已解决】mac中git push只对github用代理而对gitee不用代理
之后,感觉影响了此处的 github的git push
始终报错:
➜ crifan.github.io git:(master) pwd
...
crifan 5年前 (2020-01-16) 28594浏览 0评论
mac中git出错:
nothing to commit, working tree clean
fatal: unable to access 'https://github.com/crifan/crifan.github.io.git...
crifan 6年前 (2018-06-19) 10756浏览 0评论
之前一直可以很正常的快速的push到github.io:
https://github.com/crifan/crifan.github.io
中的,但是最近几天,不知何故,速度极其的慢,慢到有时候会超时无法push。
比如现在又遇到了: <...
crifan 7年前 (2018-04-26) 28912浏览 0评论
之前已经遇到过:
【已解决】git去clone出错:fatal: Authentication failed for
然后也是每次通过:
<code>git config --global user.name "your_acc...
crifan 7年前 (2018-03-07) 13755浏览 0评论
背景是:
在gitee上已经新建了git的repo: 但是创建了一个README.md
而本地是用
git init
git add
git commit
然后去:
➜ youtubeSubtitle git:(master) ✗ git pus...
crifan 8年前 (2016-09-02) 3432浏览 0评论
折腾git期间,不小心add了一个不需要add的文件夹
现在想要去删除。
自己去折腾,最终通过:
git rm -rf flask
其中:
r表示recursive,递归删除flask(文件夹)及其下的文件
f表示force,否则由于是(刚刚git ...
crifan 9年前 (2016-06-07) 4878浏览 0评论
git push时出现警告:
<code>licrifandeMacBook-Pro:crifanLib crifan$ git push
warning: push.default is unset; its implicit valu...
crifan 9年前 (2016-04-08) 6754浏览 0评论
[已解决]git stash pop出错:needs merge unable to refresh index
之后,提交失败:
The local repository is out of date
Make sure all changes h...
crifan 11年前 (2013-08-27) 4508浏览 0评论
通过:
git help push
可以查看到git push的语法和参数含义:
git help push
GIT-PUSH(1) ...