@@ -2558,42 +2558,7 @@ protocol.version::
25582558
25592559--
25602560
2561- pull.ff::
2562- By default, Git does not create an extra merge commit when merging
2563- a commit that is a descendant of the current commit. Instead, the
2564- tip of the current branch is fast-forwarded. When set to `false`,
2565- this variable tells Git to create an extra merge commit in such
2566- a case (equivalent to giving the `--no-ff` option from the command
2567- line). When set to `only`, only such fast-forward merges are
2568- allowed (equivalent to giving the `--ff-only` option from the
2569- command line). This setting overrides `merge.ff` when pulling.
2570-
2571- pull.rebase::
2572- When true, rebase branches on top of the fetched branch, instead
2573- of merging the default branch from the default remote when "git
2574- pull" is run. See "branch.<name>.rebase" for setting this on a
2575- per-branch basis.
2576- +
2577- When `merges`, pass the `--rebase-merges` option to 'git rebase'
2578- so that the local merge commits are included in the rebase (see
2579- linkgit:git-rebase[1] for details).
2580- +
2581- When preserve, also pass `--preserve-merges` along to 'git rebase'
2582- so that locally committed merge commits will not be flattened
2583- by running 'git pull'.
2584- +
2585- When the value is `interactive`, the rebase is run in interactive mode.
2586- +
2587- *NOTE*: this is a possibly dangerous operation; do *not* use
2588- it unless you understand the implications (see linkgit:git-rebase[1]
2589- for details).
2590-
2591- pull.octopus::
2592- The default merge strategy to use when pulling multiple branches
2593- at once.
2594-
2595- pull.twohead::
2596- The default merge strategy to use when pulling a single branch.
2561+ include::pull-config.txt[]
25972562
25982563push.default::
25992564 Defines the action `git push` should take if no refspec is
0 commit comments