我犯了一些修改文件並將其推到GitHub上:樞紐:中止:起源遙控器不指向GitHub的倉庫
git add myfile
git commit -m "some change to myfile"
git push origin feature
然後我想創建一個拉請求:
$ hub pull-request -b master -h feature
Aborted: the origin remote doesn't point to a GitHub repository.
由於origin
在git push origin feature
工程,爲什麼它說它不指向一個GitHub存儲庫?
我也可以從終端指定審閱者和受讓人嗎?
謝謝。
$ git remote show origin
* remote origin
Fetch URL: https://git.xxx.net/xxx
Push URL: https://git.xxx.net/xxx
HEAD branch: master
Remote branches:
...
起源的URL可以是任何東西。 '''git remote show origin'''顯示的網址是什麼? – eftshift0
看到我的更新。爲什麼'git push origin feature'中的'origin'起作用,但是它不指向'hub pull-request -b master -h feature'中的GitHub存儲庫? – Tim