Gitで新しいブランチを作成します。
git branch my_branch
押して:
git push origin my_branch
ここで、誰かがサーバーでいくつかの変更を行ったとしましょうorigin/my_branch
。私がやります:
git pull
しかし、私は得ます:
You asked me to pull without telling me which branch you
want to merge with, and 'branch.my_branch.merge' in
your configuration file does not tell me, either. Please
specify which branch you want to use on the command line and
try again (e.g. 'git pull <repository> <refspec>').
See git-pull(1) for details.
If you often merge with the same branch, you may want to
use something like the following in your configuration file:
[branch "my_branch"]
remote = <nickname>
merge = <remote-ref>
[remote "<nickname>"]
url = <url>
fetch = <refspec>
See git-config(1) for details.
私はそれを動作させることができることを学びました:
git branch --set-upstream my_branch origin/my_branch
しかし、なぜ私が作成するすべてのブランチに対してこれを行う必要があるのですか?それは私がプッシュする場合ていることは明らかではないmy_branch
にorigin/my_branch
し、私は引くしたいと思うorigin/my_branch
にmy_branch
?これをデフォルトの動作にするにはどうすればよいですか?
--set-upstream
オプションは非推奨です。--track
または--set-upstream-to
代わりに使用する必要があります。
--set-upstream
廃止されて、おそらくgitの開発者は、実行時に表示されますヘルプメッセージからそれを削除してくださいgit push
オプションなしのと何の上流が設定されていませんか?
git branch --set-upstream
は非推奨です。git push --set-upstream
ではありません。
branch.autosetupmerge
、リモートトラッキングブランチからブランチを作成するときにのみ、新しいブランチの上流設定が自動的に設定されることを意味します(例:<remote-name>/<branch-name>
)(git-config(1)を参照)。おそらく、既存のローカルブランチからブランチを作成しています。リモートブランチの先端から直接ローカルにブランチしている場合(ローカルブランチ上にあるにもかかわらず)、を使用git branch my_branch <remote-name>/<branch-name>
して、アップストリーム構成を自動的にセットアップできます。