2017-03-02 13 views
0

リモートリポジトリからブランチを作成し、ローカルのリポジトリ名を変更しました。後でgit branch --unset-upstreamコマンドを実行してトラッキングを削除しました。私は、リモートブランチに私の地元の変更をプッシュしようとすると、 今私は私が間違っているつもりです以下のエラーgitがリモートブランチにプッシュするとエラーが発生する

git push --set-upstream origin feature/my_remote_branch 

error: src refspec feature/my_remote_branch does not match any. 
error: failed to push some refs to 'https://[email protected]/scm/app/app.git' 

を取得していますか?

+0

と呼ばれている必要があります。マニュアルをよく読んでください。 – ckruczek

+0

私の質問でgit pushコマンドを更新しました。引き続き同じエラーが発生する – zilcuanu

+0

ローカルブランチの名前は何ですか、リモートブランチの名前は何ですか? – Vampire

答えて

-1

あなたは

git push origin -u feature/my_remote_branch 
0

はこれを試してみてくださいしようと初めて推進している場合:あなたのローカルおよびリモートブランチは、異なる名前を持っているとして、あなたはプッシュコマンドとしての両方を指定する必要が

$ git push -u origin feature-one-branch:my_remote_branch 


Or, (if not works) 
$ git push -u feature my_remote_branch 
0

git push -u <remote> <local-branch>:<remote-branch>それに応じてトラッキングが設定されていない限り長くしてください。

git push --set-upstream origin feature/my_remote_branchは、ローカルブランチfeature/my_remote_branchをローカルにないリモートにプッシュしようとします。

あなたは--unset上流を使用している場合は、このエラーを取得しているofcourseのあなたは

git push --set-upstream origin feature-one-branch:feature/my_remote_branch 
関連する問題