最終更新:2016-02-16 (火) 14:00:45 (2997d)  

Git/追跡
Top / Git / 追跡

Git/ブランチ

  • When creating a new branch, set up branch.<name>.remote and branch.<name>.merge configuration entries to mark the start-point branch as "upstream" from the new branch. This configuration will tell git to show the relationship between the two branches in git status and git branch -v. Furthermore, it directs git pull without arguments to pull from the upstream when the new branch is checked out.
  • This behavior is the default when the start point is a remote-tracking branch. Set the branch.autoSetupMerge? configuration variable to false if you want git checkout and git branch to always behave as if --no-track were given. Set it to always if you want this behavior when the start-point is either a local or remote-tracking branch.

関連