提示如下
fatal: unable to access 'https://code.csdn.net/yangkeao/odin.git/': The
requeste URL returned error: 500
求解釋,並解決方案。 。 。
天蓬老师2017-04-24 09:15:31
問題已經解決,可是仍不知道原理。 。
用clone下來的直接push不成功,但添加後git push -u origin master就成功了。 。 。
迷茫2017-04-24 09:15:31
第一次git push不上去和你沒有指定upstream和分支有關。
看git手冊:
-u, --set-upstream
For every branch that is up to date or successfully pushed, add upstream (tracking) reference, used by argument-less git-pull(1) and other commands. For more information, see branch.<name>.merge in git-config(1).
使用-u參數之後以後的git push及不需要再指定upstream了。