you asked to pull from the remote 'origin', but did not specify a branch. because this is not the default configured remote
for your current branch, you must specify a branch on the command line.
##增加乙個遠端分支,並且將該遠端分支命名為origin
git remote add origin
##設定本地master分支預設對應的遠端分支是origin下的master分支
git branch --set-upstream-to=origin/master master
乙個分支的upstream,其實就是與遠端分支做關聯,告訴git,預設此分支為推送及拉取的遠端分支的資訊。
例如我的乙個例子上的配置
[remote "ddjf"]
url =
fetch = +refs/heads/*:refs/remotes/ddjf/*
[branch "master"]
remote = ddjf
merge = refs/heads/master
rebase = false
[branch "jf20200119"]
remote = ddjf
merge = refs/heads/jifen20200119
rebase = false
本地有兩個分支,master和jf20200119,對應的遠端分支ddjf git常見問題
如果輸入 git remote add origin git github.com djqiang github帳號名 gitdemo 專案名 git 提示出錯資訊 fatal remote origin already exists.解決辦法如下 1 先輸入 git remote rm origi...
git 常見問題
1.正常做專案 2.別人打了comment,自己需要打patch fix comment issue git add git rm filepath git commit amend change commit msg if necessary git push u origin your dev ...
git常見問題
環境 ubuntu 16.04 使用git經常會遇到奇奇怪怪的問題,現將我遇到的一些問題彙總如下,不定期更新。提示資訊 error 無法推送一些引用到 git github.com 解決方案 執行以下 強制更新 git push u origin master 提示資訊 password for h...