Merge branch 'jc/push-2.0-default-to-simple'
authorJunio C Hamano <gitster@pobox.com>
Fri, 7 Mar 2014 23:13:15 +0000 (15:13 -0800)
committerJunio C Hamano <gitster@pobox.com>
Fri, 7 Mar 2014 23:13:15 +0000 (15:13 -0800)
Finally update the "git push" default behaviour to "simple".

1  2 
Documentation/config.txt
Documentation/git-push.txt
advice.c
advice.h
builtin/push.c
diff --combined Documentation/config.txt
index 02776e51c8c1abfc151d245259f61546e4ff598c,2fe88f00a84a5e0752b46c8dfb05733aa0b936a6..73904bce55ff1d78bd10a5eb6b83f5fdf36ea74a
@@@ -1,14 -1,14 +1,14 @@@
  CONFIGURATION FILE
  ------------------
  
 -The git configuration file contains a number of variables that affect
 -the git command's behavior. The `.git/config` file in each repository
 +The Git configuration file contains a number of variables that affect
 +the Git commands' behavior. The `.git/config` file in each repository
  is used to store the configuration for that repository, and
  `$HOME/.gitconfig` is used to store a per-user configuration as
  fallback values for the `.git/config` file. The file `/etc/gitconfig`
  can be used to store a system-wide default configuration.
  
 -The configuration variables are used by both the git plumbing
 +The configuration variables are used by both the Git plumbing
  and the porcelains. The variables are divided into sections, wherein
  the fully qualified variable name of the variable itself is the last
  dot-separated segment and the section name is everything before the last
@@@ -140,53 -140,29 +140,47 @@@ advice.*:
        can tell Git that you do not need help by setting these to 'false':
  +
  --
 -      pushNonFastForward::
 +      pushUpdateRejected::
                Set this variable to 'false' if you want to disable
-               'pushNonFFCurrent', 'pushNonFFDefault',
 -              'pushNonFFCurrent', and
 -              'pushNonFFMatching' simultaneously.
++              'pushNonFFCurrent',
 +              'pushNonFFMatching', 'pushAlreadyExists',
 +              'pushFetchFirst', and 'pushNeedsForce'
 +              simultaneously.
        pushNonFFCurrent::
                Advice shown when linkgit:git-push[1] fails due to a
                non-fast-forward update to the current branch.
-       pushNonFFDefault::
-               Advice to set 'push.default' to 'upstream' or 'current'
-               when you ran linkgit:git-push[1] and pushed 'matching
-               refs' by default (i.e. you did not provide an explicit
-               refspec, and no 'push.default' configuration was set)
-               and it resulted in a non-fast-forward error.
        pushNonFFMatching::
                Advice shown when you ran linkgit:git-push[1] and pushed
                'matching refs' explicitly (i.e. you used ':', or
                specified a refspec that isn't your current branch) and
                it resulted in a non-fast-forward error.
 +      pushAlreadyExists::
 +              Shown when linkgit:git-push[1] rejects an update that
 +              does not qualify for fast-forwarding (e.g., a tag.)
 +      pushFetchFirst::
 +              Shown when linkgit:git-push[1] rejects an update that
 +              tries to overwrite a remote ref that points at an
 +              object we do not have.
 +      pushNeedsForce::
 +              Shown when linkgit:git-push[1] rejects an update that
 +              tries to overwrite a remote ref that points at an
 +              object that is not a commit-ish, or make the remote
 +              ref point at an object that is not a commit-ish.
        statusHints::
                Show directions on how to proceed from the current
                state in the output of linkgit:git-status[1], in
                the template shown when writing commit messages in
                linkgit:git-commit[1], and in the help message shown
                by linkgit:git-checkout[1] when switching branch.
 +      statusUoption::
 +              Advise to consider using the `-u` option to linkgit:git-status[1]
 +              when the command takes more than 2 seconds to enumerate untracked
 +              files.
        commitBeforeMerge::
                Advice shown when linkgit:git-merge[1] refuses to
                merge to avoid overwriting local changes.
        resolveConflict::
 -              Advices shown by various commands when conflicts
 +              Advice shown by various commands when conflicts
                prevent the operation from being performed.
        implicitIdentity::
                Advice on how to set your identity configuration when
        amWorkDir::
                Advice that shows the location of the patch file when
                linkgit:git-am[1] fails to apply it.
 +      rmHints::
 +              In case of failure in the output of linkgit:git-rm[1],
 +              show directions on how to proceed from the current state.
  --
  
  core.fileMode::
@@@ -213,11 -186,22 +207,11 @@@ The default is true, except linkgit:git
  will probe and set core.fileMode false if appropriate when the
  repository is created.
  
 -core.ignoreCygwinFSTricks::
 -      This option is only used by Cygwin implementation of Git. If false,
 -      the Cygwin stat() and lstat() functions are used. This may be useful
 -      if your repository consists of a few separate directories joined in
 -      one hierarchy using Cygwin mount. If true, Git uses native Win32 API
 -      whenever it is possible and falls back to Cygwin functions only to
 -      handle symbol links. The native mode is more than twice faster than
 -      normal Cygwin l/stat() functions. True by default, unless core.filemode
 -      is true, in which case ignoreCygwinFSTricks is ignored as Cygwin's
 -      POSIX emulation is required to support core.filemode.
 -
  core.ignorecase::
        If true, this option enables various workarounds to enable
 -      git to work better on filesystems that are not case sensitive,
 +      Git to work better on filesystems that are not case sensitive,
        like FAT. For example, if a directory listing finds
 -      "makefile" when git expects "Makefile", git will assume
 +      "makefile" when Git expects "Makefile", Git will assume
        it is really the same file, and continue to remember it as
        "Makefile".
  +
@@@ -226,13 -210,13 +220,13 @@@ will probe and set core.ignorecase tru
  is created.
  
  core.precomposeunicode::
 -      This option is only used by Mac OS implementation of git.
 -      When core.precomposeunicode=true, git reverts the unicode decomposition
 +      This option is only used by Mac OS implementation of Git.
 +      When core.precomposeunicode=true, Git reverts the unicode decomposition
        of filenames done by Mac OS. This is useful when sharing a repository
        between Mac OS and Linux or Windows.
 -      (Git for Windows 1.7.10 or higher is needed, or git under cygwin 1.7).
 -      When false, file names are handled fully transparent by git,
 -      which is backward compatible with older versions of git.
 +      (Git for Windows 1.7.10 or higher is needed, or Git under cygwin 1.7).
 +      When false, file names are handled fully transparent by Git,
 +      which is backward compatible with older versions of Git.
  
  core.trustctime::
        If false, the ctime differences between the index and the
        crawlers and some backup systems).
        See linkgit:git-update-index[1]. True by default.
  
 +core.checkstat::
 +      Determines which stat fields to match between the index
 +      and work tree. The user can set this to 'default' or
 +      'minimal'. Default (or explicitly 'default'), is to check
 +      all fields, including the sub-second part of mtime and ctime.
 +
  core.quotepath::
        The commands that output paths (e.g. 'ls-files',
        'diff'), when not given the `-z` option, will quote
@@@ -268,20 -246,20 +262,20 @@@ core.eol:
        conversion.
  
  core.safecrlf::
 -      If true, makes git check if converting `CRLF` is reversible when
 +      If true, makes Git check if converting `CRLF` is reversible when
        end-of-line conversion is active.  Git will verify if a command
        modifies a file in the work tree either directly or indirectly.
        For example, committing a file followed by checking out the
        same file should yield the original file in the work tree.  If
        this is not the case for the current setting of
 -      `core.autocrlf`, git will reject the file.  The variable can
 -      be set to "warn", in which case git will only warn about an
 +      `core.autocrlf`, Git will reject the file.  The variable can
 +      be set to "warn", in which case Git will only warn about an
        irreversible conversion but continue the operation.
  +
  CRLF conversion bears a slight chance of corrupting data.
 -When it is enabled, git will convert CRLF to LF during commit and LF to
 +When it is enabled, Git will convert CRLF to LF during commit and LF to
  CRLF during checkout.  A file that contains a mixture of LF and
 -CRLF before the commit cannot be recreated by git.  For text
 +CRLF before the commit cannot be recreated by Git.  For text
  files this is the right thing to do: it corrects line endings
  such that we have only LF line endings in the repository.
  But for binary files that are accidentally classified as text the
@@@ -291,7 -269,7 +285,7 @@@ If you recognize such corruption early 
  setting the conversion type explicitly in .gitattributes.  Right
  after committing you still have the original file in your work
  tree and this file is not yet corrupted.  You can explicitly tell
 -git that this file is binary and git will handle the file
 +Git that this file is binary and Git will handle the file
  appropriately.
  +
  Unfortunately, the desired effect of cleaning up text files with
@@@ -336,7 -314,7 +330,7 @@@ is created
  core.gitProxy::
        A "proxy command" to execute (as 'command host port') instead
        of establishing direct connection to the remote server when
 -      using the git protocol for fetching. If the variable value is
 +      using the Git protocol for fetching. If the variable value is
        in the "COMMAND for DOMAIN" format, the command is applied only
        on hostnames ending with the specified domain string. This variable
        may be set multiple times and is matched in the given order;
@@@ -395,7 -373,7 +389,7 @@@ Note that this variable is honored eve
  file in a ".git" subdirectory of a directory and its value differs
  from the latter directory (e.g. "/path/to/.git/config" has
  core.worktree set to "/different/path"), which is most likely a
 -misconfiguration.  Running git commands in the "/path/to" directory will
 +misconfiguration.  Running Git commands in the "/path/to" directory will
  still use "/different/path" as the root of the work tree and can cause
  confusion unless you know what you are doing (e.g. you are creating a
  read-only snapshot of the same index to a location different from the
@@@ -404,7 -382,7 +398,7 @@@ repository's usual working tree)
  core.logAllRefUpdates::
        Enable the reflog. Updates to a ref <ref> is logged to the file
        "$GIT_DIR/logs/<ref>", by appending the new and old
 -      SHA1, the date/time and the reason of the update, but
 +      SHA-1, the date/time and the reason of the update, but
        only when the file exists.  If this configuration
        variable is set to true, missing "$GIT_DIR/logs/<ref>"
        file is automatically created for branch heads (i.e. under
@@@ -427,7 -405,7 +421,7 @@@ core.sharedRepository:
        several users in a group (making sure all the files and objects are
        group-writable). When 'all' (or 'world' or 'everybody'), the
        repository will be readable by all users, additionally to being
 -      group-shareable. When 'umask' (or 'false'), git will use permissions
 +      group-shareable. When 'umask' (or 'false'), Git will use permissions
        reported by umask(2). When '0xxx', where '0xxx' is an octal number,
        files in the repository will have this mode value. '0xxx' will override
        user's umask value (whereas the other options will only override
        See linkgit:git-init[1]. False by default.
  
  core.warnAmbiguousRefs::
 -      If true, git will warn you if the ref name you passed it is ambiguous
 -      and might match multiple refs in the .git/refs/ tree. True by default.
 +      If true, Git will warn you if the ref name you passed it is ambiguous
 +      and might match multiple refs in the repository. True by default.
  
  core.compression::
        An integer -1..9, indicating a default compression level.
@@@ -510,7 -488,7 +504,7 @@@ Common unit suffixes of 'k', 'm', or 'g
  
  core.excludesfile::
        In addition to '.gitignore' (per-directory) and
 -      '.git/info/exclude', git looks into this file for patterns
 +      '.git/info/exclude', Git looks into this file for patterns
        of files which are not meant to be tracked.  "`~/`" is expanded
        to the value of `$HOME` and "`~user/`" to the specified user's
        home directory. Its default value is $XDG_CONFIG_HOME/git/ignore.
@@@ -528,7 -506,7 +522,7 @@@ core.askpass:
  
  core.attributesfile::
        In addition to '.gitattributes' (per-directory) and
 -      '.git/info/attributes', git looks into this file for attributes
 +      '.git/info/attributes', Git looks into this file for attributes
        (see linkgit:gitattributes[5]). Path expansions are made the same
        way as for `core.excludesfile`. Its default value is
        $XDG_CONFIG_HOME/git/attributes. If $XDG_CONFIG_HOME is either not
@@@ -540,37 -518,29 +534,37 @@@ core.editor:
        variable when it is set, and the environment variable
        `GIT_EDITOR` is not set.  See linkgit:git-var[1].
  
 +core.commentchar::
 +      Commands such as `commit` and `tag` that lets you edit
 +      messages consider a line that begins with this character
 +      commented, and removes them after the editor returns
 +      (default '#').
 +
  sequence.editor::
 -      Text editor used by `git rebase -i` for editing the rebase insn file.
 +      Text editor used by `git rebase -i` for editing the rebase instruction file.
        The value is meant to be interpreted by the shell when it is used.
        It can be overridden by the `GIT_SEQUENCE_EDITOR` environment variable.
        When not configured the default commit message editor is used instead.
  
  core.pager::
 -      The command that git will use to paginate output.  Can
 -      be overridden with the `GIT_PAGER` environment
 -      variable.  Note that git sets the `LESS` environment
 -      variable to `FRSX` if it is unset when it runs the
 -      pager.  One can change these settings by setting the
 -      `LESS` variable to some other value.  Alternately,
 -      these settings can be overridden on a project or
 -      global basis by setting the `core.pager` option.
 -      Setting `core.pager` has no effect on the `LESS`
 -      environment variable behaviour above, so if you want
 -      to override git's default settings this way, you need
 -      to be explicit.  For example, to disable the S option
 -      in a backward compatible manner, set `core.pager`
 -      to `less -+S`.  This will be passed to the shell by
 -      git, which will translate the final command to
 -      `LESS=FRSX less -+S`.
 +      Text viewer for use by Git commands (e.g., 'less').  The value
 +      is meant to be interpreted by the shell.  The order of preference
 +      is the `$GIT_PAGER` environment variable, then `core.pager`
 +      configuration, then `$PAGER`, and then the default chosen at
 +      compile time (usually 'less').
 ++
 +When the `LESS` environment variable is unset, Git sets it to `FRSX`
 +(if `LESS` environment variable is set, Git does not change it at
 +all).  If you want to selectively override Git's default setting
 +for `LESS`, you can set `core.pager` to e.g. `less -+S`.  This will
 +be passed to the shell by Git, which will translate the final
 +command to `LESS=FRSX less -+S`. The environment tells the command
 +to set the `S` option to chop long lines but the command line
 +resets it to the default to fold long lines.
 ++
 +Likewise, when the `LV` environment variable is unset, Git sets it
 +to `-c`.  You can override this setting by exporting `LV` with
 +another value or setting `core.pager` to `lv +c`.
  
  core.whitespace::
        A comma separated list of common whitespace problems to
    does not trigger if the character before such a carriage-return
    is not a whitespace (not enabled by default).
  * `tabwidth=<n>` tells how many character positions a tab occupies; this
 -  is relevant for `indent-with-non-tab` and when git fixes `tab-in-indent`
 +  is relevant for `indent-with-non-tab` and when Git fixes `tab-in-indent`
    errors. The default tab width is 8. Allowed values are 1 to 63.
  
  core.fsyncobjectfiles::
@@@ -614,7 -584,7 +608,7 @@@ core.preloadindex:
  +
  This can speed up operations like 'git diff' and 'git status' especially
  on filesystems like NFS that have weak caching semantics and thus
 -relatively high IO latencies.  With this set to 'true', git will do the
 +relatively high IO latencies.  With this set to 'true', Git will do the
  index comparison to the filesystem data in parallel, allowing
  overlapping IO's.
  
@@@ -650,9 -620,9 +644,9 @@@ add.ignore-errors:
  add.ignoreErrors::
        Tells 'git add' to continue adding files when some files cannot be
        added due to indexing errors. Equivalent to the '--ignore-errors'
 -      option of linkgit:git-add[1].  Older versions of git accept only
 +      option of linkgit:git-add[1].  Older versions of Git accept only
        `add.ignore-errors`, which does not follow the usual naming
 -      convention for configuration variables.  Newer versions of git
 +      convention for configuration variables.  Newer versions of Git
        honor `add.ignoreErrors` as well.
  
  alias.*::
        after defining "alias.last = cat-file commit HEAD", the invocation
        "git last" is equivalent to "git cat-file commit HEAD". To avoid
        confusion and troubles with script usage, aliases that
 -      hide existing git commands are ignored. Arguments are split by
 +      hide existing Git commands are ignored. Arguments are split by
        spaces, the usual shell quoting and escaping is supported.
        quote pair and a backslash can be used to quote them.
  +
@@@ -707,7 -677,7 +701,7 @@@ branch.autosetupmerge:
  
  branch.autosetuprebase::
        When a new branch is created with 'git branch' or 'git checkout'
 -      that tracks another branch, this variable tells git to set
 +      that tracks another branch, this variable tells Git to set
        up pull to rebase instead of merge (see "branch.<name>.rebase").
        When `never`, rebase is never automatically set to true.
        When `local`, rebase is set to true for tracked branches of
        This option defaults to never.
  
  branch.<name>.remote::
 -      When in branch <name>, it tells 'git fetch' and 'git push' which
 -      remote to fetch from/push to.  It defaults to `origin` if no remote is
 -      configured. `origin` is also used if you are not on any branch.
 +      When on branch <name>, it tells 'git fetch' and 'git push'
 +      which remote to fetch from/push to.  The remote to push to
 +      may be overridden with `remote.pushdefault` (for all branches).
 +      The remote to push to, for the current branch, may be further
 +      overridden by `branch.<name>.pushremote`.  If no remote is
 +      configured, or if you are not on any branch, it defaults to
 +      `origin` for fetching and `remote.pushdefault` for pushing.
 +      Additionally, `.` (a period) is the current local repository
 +      (a dot-repository), see `branch.<name>.merge`'s final note below.
 +
 +branch.<name>.pushremote::
 +      When on branch <name>, it overrides `branch.<name>.remote` for
 +      pushing.  It also overrides `remote.pushdefault` for pushing
 +      from branch <name>.  When you pull from one place (e.g. your
 +      upstream) and push to another place (e.g. your own publishing
 +      repository), you would want to set `remote.pushdefault` to
 +      specify the remote to push to for all branches, and use this
 +      option to override it for a specific branch.
  
  branch.<name>.merge::
        Defines, together with branch.<name>.remote, the upstream branch
        Specify multiple values to get an octopus merge.
        If you wish to setup 'git pull' so that it merges into <name> from
        another branch in the local repository, you can point
 -      branch.<name>.merge to the desired branch, and use the special setting
 -      `.` (a period) for branch.<name>.remote.
 +      branch.<name>.merge to the desired branch, and use the relative path
 +      setting `.` (a period) for branch.<name>.remote.
  
  branch.<name>.mergeoptions::
        Sets default options for merging into branch <name>. The syntax and
@@@ -769,21 -724,11 +763,21 @@@ branch.<name>.rebase:
        instead of merging the default branch from the default remote when
        "git pull" is run. See "pull.rebase" for doing this in a non
        branch-specific manner.
 ++
 +      When preserve, also pass `--preserve-merges` along to 'git rebase'
 +      so that locally committed merge commits will not be flattened
 +      by running 'git pull'.
  +
  *NOTE*: this is a possibly dangerous operation; do *not* use
  it unless you understand the implications (see linkgit:git-rebase[1]
  for details).
  
 +branch.<name>.description::
 +      Branch description, can be edited with
 +      `git branch --edit-description`. Branch description is
 +      automatically added in the format-patch cover letter or
 +      request-pull summary.
 +
  browser.<tool>.cmd::
        Specify the command to invoke the specified browser. The
        specified command is evaluated in shell with the URLs passed
@@@ -795,8 -740,8 +789,8 @@@ browser.<tool>.path:
        working repository in gitweb (see linkgit:git-instaweb[1]).
  
  clean.requireForce::
 -      A boolean to make git-clean do nothing unless given -f
 -      or -n.   Defaults to true.
 +      A boolean to make git-clean do nothing unless given -f,
 +      -i or -n.   Defaults to true.
  
  color.branch::
        A boolean to enable/disable color in the output of
  color.branch.<slot>::
        Use customized color for branch coloration. `<slot>` is one of
        `current` (the current branch), `local` (a local branch),
 -      `remote` (a remote-tracking branch in refs/remotes/), `plain` (other
 +      `remote` (a remote-tracking branch in refs/remotes/),
 +      `upstream` (upstream tracking branch), `plain` (other
        refs).
  +
  The value for these configuration variables is a list of colors (at most
@@@ -876,17 -820,16 +870,17 @@@ The values of these variables may be sp
  
  color.interactive::
        When set to `always`, always use colors for interactive prompts
 -      and displays (such as those used by "git-add --interactive").
 -      When false (or `never`), never.  When set to `true` or `auto`, use
 -      colors only when the output is to the terminal. Defaults to false.
 +      and displays (such as those used by "git-add --interactive" and
 +      "git-clean --interactive"). When false (or `never`), never.
 +      When set to `true` or `auto`, use colors only when the output is
 +      to the terminal. Defaults to false.
  
  color.interactive.<slot>::
 -      Use customized color for 'git add --interactive'
 -      output. `<slot>` may be `prompt`, `header`, `help` or `error`, for
 -      four distinct types of normal output from interactive
 -      commands.  The values of these variables may be specified as
 -      in color.branch.<slot>.
 +      Use customized color for 'git add --interactive' and 'git clean
 +      --interactive' output. `<slot>` may be `prompt`, `header`, `help`
 +      or `error`, for four distinct types of normal output from
 +      interactive commands.  The values of these variables may be
 +      specified as in color.branch.<slot>.
  
  color.pager::
        A boolean to enable/disable colored output when the pager is in
@@@ -909,7 -852,7 +903,7 @@@ color.status.<slot>:
        one of `header` (the header text of the status message),
        `added` or `updated` (files which are added but not committed),
        `changed` (files which are changed but not added in the index),
 -      `untracked` (files which are not tracked by git),
 +      `untracked` (files which are not tracked by Git),
        `branch` (the current branch), or
        `nobranch` (the color the 'no branch' warning is shown in, defaulting
        to red). The values of these variables may be specified as in
@@@ -920,21 -863,17 +914,21 @@@ color.ui:
        as `color.diff` and `color.grep` that control the use of color
        per command family. Its scope will expand as more commands learn
        configuration to set a default for the `--color` option.  Set it
 -      to `always` if you want all output not intended for machine
 -      consumption to use color, to `true` or `auto` if you want such
 -      output to use color when written to the terminal, or to `false` or
 -      `never` if you prefer git commands not to use color unless enabled
 -      explicitly with some other configuration or the `--color` option.
 +      to `false` or `never` if you prefer Git commands not to use
 +      color unless enabled explicitly with some other configuration
 +      or the `--color` option. Set it to `always` if you want all
 +      output not intended for machine consumption to use color, to
 +      `true` or `auto` (this is the default since Git 1.8.4) if you
 +      want such output to use color when written to the terminal.
  
  column.ui::
        Specify whether supported commands should output in columns.
        This variable consists of a list of tokens separated by spaces
        or commas:
  +
 +These options control when the feature should be enabled
 +(defaults to 'never'):
 ++
  --
  `always`;;
        always show in columns
        never show in columns
  `auto`;;
        show in columns if the output is to the terminal
 +--
 ++
 +These options control layout (defaults to 'column').  Setting any
 +of these implies 'always' if none of 'always', 'never', or 'auto' are
 +specified.
 ++
 +--
  `column`;;
 -      fill columns before rows (default)
 +      fill columns before rows
  `row`;;
        fill rows before columns
  `plain`;;
        show in one column
 +--
 ++
 +Finally, these options can be combined with a layout option (defaults
 +to 'nodense'):
 ++
 +--
  `dense`;;
        make unequal size columns to utilize more space
  `nodense`;;
        make equal size columns
  --
 -+
 -This option defaults to 'never'.
  
  column.branch::
        Specify whether to output branch listing in `git branch` in columns.
        See `column.ui` for details.
  
 +column.clean::
 +      Specify the layout when list items in `git clean -i`, which always
 +      shows files and directories in columns. See `column.ui` for details.
 +
  column.status::
        Specify whether to output untracked files in `git status` in columns.
        See `column.ui` for details.
@@@ -983,23 -907,6 +977,23 @@@ column.tag:
        Specify whether to output tag listing in `git tag` in columns.
        See `column.ui` for details.
  
 +commit.cleanup::
 +      This setting overrides the default of the `--cleanup` option in
 +      `git commit`. See linkgit:git-commit[1] for details. Changing the
 +      default can be useful when you always want to keep lines that begin
 +      with comment character `#` in your log message, in which case you
 +      would do `git config commit.cleanup whitespace` (note that you will
 +      have to remove the help lines that begin with `#` in the commit log
 +      template yourself, if you do this).
 +
 +commit.gpgsign::
 +
 +      A boolean to specify whether all commits should be GPG signed.
 +      Use of this option when doing operations such as rebase can
 +      result in a large number of commits being signed. It may be
 +      convenient to use an agent to avoid typing your GPG passphrase
 +      several times.
 +
  commit.status::
        A boolean to enable/disable inclusion of status information in the
        commit message template when using an editor to prepare the commit
@@@ -1067,7 -974,7 +1061,7 @@@ fetch.fsckObjects:
        is used instead.
  
  fetch.unpackLimit::
 -      If the number of objects fetched over the git native
 +      If the number of objects fetched over the Git native
        transfer is below this
        limit, then the objects will be unpacked into loose object
        files. However if the number of received objects equals or
        especially on slow filesystems.  If not set, the value of
        `transfer.unpackLimit` is used instead.
  
 +fetch.prune::
 +      If true, fetch will automatically behave as if the `--prune`
 +      option was given on the command line.  See also `remote.<name>.prune`.
 +
  format.attach::
        Enable multipart/mixed attachments as the default for
        'format-patch'.  The value can also be a double quoted string
@@@ -1111,7 -1014,7 +1105,7 @@@ format.subjectprefix:
  
  format.signature::
        The default for format-patch is to output a signature containing
 -      the git version number. Use this variable to change that default.
 +      the Git version number. Use this variable to change that default.
        Set this variable to the empty string ("") to suppress
        signature generation.
  
@@@ -1136,16 -1039,11 +1130,16 @@@ format.thread:
        value disables threading.
  
  format.signoff::
 -    A boolean value which lets you enable the `-s/--signoff` option of
 -    format-patch by default. *Note:* Adding the Signed-off-by: line to a
 -    patch should be a conscious act and means that you certify you have
 -    the rights to submit this work under the same open source license.
 -    Please see the 'SubmittingPatches' document for further discussion.
 +      A boolean value which lets you enable the `-s/--signoff` option of
 +      format-patch by default. *Note:* Adding the Signed-off-by: line to a
 +      patch should be a conscious act and means that you certify you have
 +      the rights to submit this work under the same open source license.
 +      Please see the 'SubmittingPatches' document for further discussion.
 +
 +format.coverLetter::
 +      A boolean that controls whether to generate a cover-letter when
 +      format-patch is invoked, but in addition can be set to "auto", to
 +      generate a cover-letter only when there's more than one patch.
  
  filter.<driver>.clean::
        The command which is used to convert the content of a worktree
@@@ -1175,10 -1073,6 +1169,10 @@@ gc.autopacklimit:
        --auto` consolidates them into one larger pack.  The
        default value is 50.  Setting this to 0 disables it.
  
 +gc.autodetach::
 +      Make `git gc --auto` return immediately andrun in background
 +      if the system supports it. Default is true.
 +
  gc.packrefs::
        Running `git pack-refs` in a repository renders it
        unclonable by Git versions prior to 1.5.1.2 over dumb
@@@ -1233,7 -1127,7 +1227,7 @@@ gitcvs.logfile:
  gitcvs.usecrlfattr::
        If true, the server will look up the end-of-line conversion
        attributes for files to determine the '-k' modes to use. If
 -      the attributes force git to treat a file as text,
 +      the attributes force Git to treat a file as text,
        the '-k' mode will be left blank so CVS clients will
        treat it as text. If they suppress text conversion, the file
        will be set with '-kb' mode, which suppresses any newline munging
@@@ -1253,7 -1147,7 +1247,7 @@@ gitcvs.allbinary:
  
  gitcvs.dbname::
        Database used by git-cvsserver to cache revision information
 -      derived from the git repository. The exact meaning depends on the
 +      derived from the Git repository. The exact meaning depends on the
        used database driver, for SQLite (which is the default driver) this
        is a filename. Supports variable substitution (see
        linkgit:git-cvsserver[1] for details). May not contain semicolons (`;`).
  
  gitcvs.dbdriver::
        Used Perl DBI driver. You can specify any available driver
 -        for this here, but it might not work. git-cvsserver is tested
 +      for this here, but it might not work. git-cvsserver is tested
        with 'DBD::SQLite', reported to work with 'DBD::Pg', and
        reported *not* to work with 'DBD::mysql'. Experimental feature.
        May not contain double colons (`:`). Default: 'SQLite'.
@@@ -1451,12 -1345,6 +1445,12 @@@ help.autocorrect:
        value is 0 - the command will be just shown but not executed.
        This is the default.
  
 +help.htmlpath::
 +      Specify the path where the HTML documentation resides. File system paths
 +      and URLs are supported. HTML pages will be prefixed with this path when
 +      help is displayed in the 'web' format. This defaults to the documentation
 +      path of your Git installation.
 +
  http.proxy::
        Override the HTTP proxy, normally configured using the 'http_proxy',
        'https_proxy', and 'all_proxy' environment variables (see
  
  http.cookiefile::
        File containing previously stored cookie lines which should be used
 -      in the git http session, if they match the server. The file format
 +      in the Git http session, if they match the server. The file format
        of the file to read cookies from should be plain HTTP headers or
        the Netscape/Mozilla cookie file format (see linkgit:curl[1]).
        NOTE that the file specified with http.cookiefile is only used as
 -      input. No cookies will be stored in the file.
 +      input unless http.saveCookies is set.
 +
 +http.savecookies::
 +      If set, store cookies received during requests to the file specified by
 +      http.cookiefile. Has no effect if http.cookiefile is unset.
  
  http.sslVerify::
        Whether to verify the SSL certificate when fetching or pushing
@@@ -1491,7 -1375,7 +1485,7 @@@ http.sslKey:
        variable.
  
  http.sslCertPasswordProtected::
 -      Enable git's password prompt for the SSL certificate.  Otherwise
 +      Enable Git's password prompt for the SSL certificate.  Otherwise
        OpenSSL will prompt the user, possibly many times, if the
        certificate or private key is encrypted.  Can be overridden by the
        'GIT_SSL_CERT_PASSWORD_PROTECTED' environment variable.
@@@ -1506,14 -1390,6 +1500,14 @@@ http.sslCAPath:
        with when fetching or pushing over HTTPS. Can be overridden
        by the 'GIT_SSL_CAPATH' environment variable.
  
 +http.sslTry::
 +      Attempt to use AUTH SSL/TLS and encrypted data transfers
 +      when connecting via regular FTP protocol. This might be needed
 +      if the FTP server requires it for security reasons or you wish
 +      to connect securely whenever remote FTP server supports it.
 +      Default is false since it might trigger certificate verification
 +      errors on misconfigured servers.
 +
  http.maxRequests::
        How many HTTP requests to launch in parallel. Can be overridden
        by the 'GIT_HTTP_MAX_REQUESTS' environment variable. Default is 5.
@@@ -1546,60 -1422,15 +1540,60 @@@ http.noEPSV:
  
  http.useragent::
        The HTTP USER_AGENT string presented to an HTTP server.  The default
 -      value represents the version of the client git such as git/1.7.1.
 +      value represents the version of the client Git such as git/1.7.1.
        This option allows you to override this value to a more common value
        such as Mozilla/4.0.  This may be necessary, for instance, if
        connecting through a firewall that restricts HTTP connections to a set
        of common USER_AGENT strings (but not including those like git/1.7.1).
        Can be overridden by the 'GIT_HTTP_USER_AGENT' environment variable.
  
 +http.<url>.*::
 +      Any of the http.* options above can be applied selectively to some urls.
 +      For a config key to match a URL, each element of the config key is
 +      compared to that of the URL, in the following order:
 ++
 +--
 +. Scheme (e.g., `https` in `https://example.com/`). This field
 +  must match exactly between the config key and the URL.
 +
 +. Host/domain name (e.g., `example.com` in `https://example.com/`).
 +  This field must match exactly between the config key and the URL.
 +
 +. Port number (e.g., `8080` in `http://example.com:8080/`).
 +  This field must match exactly between the config key and the URL.
 +  Omitted port numbers are automatically converted to the correct
 +  default for the scheme before matching.
 +
 +. Path (e.g., `repo.git` in `https://example.com/repo.git`). The
 +  path field of the config key must match the path field of the URL
 +  either exactly or as a prefix of slash-delimited path elements.  This means
 +  a config key with path `foo/` matches URL path `foo/bar`.  A prefix can only
 +  match on a slash (`/`) boundary.  Longer matches take precedence (so a config
 +  key with path `foo/bar` is a better match to URL path `foo/bar` than a config
 +  key with just path `foo/`).
 +
 +. User name (e.g., `user` in `https://user@example.com/repo.git`). If
 +  the config key has a user name it must match the user name in the
 +  URL exactly. If the config key does not have a user name, that
 +  config key will match a URL with any user name (including none),
 +  but at a lower precedence than a config key with a user name.
 +--
 ++
 +The list above is ordered by decreasing precedence; a URL that matches
 +a config key's path is preferred to one that matches its user name. For example,
 +if the URL is `https://user@example.com/foo/bar` a config key match of
 +`https://example.com/foo` will be preferred over a config key match of
 +`https://user@example.com`.
 ++
 +All URLs are normalized before attempting any matching (the password part,
 +if embedded in the URL, is always ignored for matching purposes) so that
 +equivalent urls that are simply spelled differently will match properly.
 +Environment variable settings always override any matches.  The urls that are
 +matched against are those given directly to Git commands.  This means any URLs
 +visited as a result of a redirection do not participate in matching.
 +
  i18n.commitEncoding::
 -      Character encoding the commit messages are stored in; git itself
 +      Character encoding the commit messages are stored in; Git itself
        does not care per se, but this information is necessary e.g. when
        importing commits from emails or in the gitk graphical history
        browser (and possibly at other places in the future or in other
@@@ -1672,10 -1503,6 +1666,10 @@@ log.showroot:
        Tools like linkgit:git-log[1] or linkgit:git-whatchanged[1], which
        normally hide the root commit will now show it. True by default.
  
 +log.mailmap::
 +      If true, makes linkgit:git-log[1], linkgit:git-show[1], and
 +      linkgit:git-whatchanged[1] assume `--use-mailmap`.
 +
  mailmap.file::
        The location of an augmenting mailmap file. The default
        mailmap, located in the root of the repository, is loaded
        subdirectory, or somewhere outside of the repository itself.
        See linkgit:git-shortlog[1] and linkgit:git-blame[1].
  
 +mailmap.blob::
 +      Like `mailmap.file`, but consider the value as a reference to a
 +      blob in the repository. If both `mailmap.file` and
 +      `mailmap.blob` are given, both are parsed, with entries from
 +      `mailmap.file` taking precedence. In a bare repository, this
 +      defaults to `HEAD:.mailmap`. In a non-bare repository, it
 +      defaults to empty.
 +
  man.viewer::
        Specify the programs that may be used to display help in the
        'man' format. See linkgit:git-help[1].
@@@ -1737,7 -1556,7 +1731,7 @@@ mergetool.keepBackup:
        `true` (i.e. keep the backup files).
  
  mergetool.keepTemporaries::
 -      When invoking a custom merge tool, git uses a set of temporary
 +      When invoking a custom merge tool, Git uses a set of temporary
        files to pass to the tool. If the tool returns an error and this
        variable is set to `true`, then these temporary files will be
        preserved, otherwise they will be removed after the tool has
@@@ -1765,7 -1584,7 +1759,7 @@@ displayed
  
  notes.rewrite.<command>::
        When rewriting commits with <command> (currently `amend` or
 -      `rebase`) and this variable is set to `true`, git
 +      `rebase`) and this variable is set to `true`, Git
        automatically copies your notes from the original to the
        rewritten commit.  Defaults to `true`, but see
        "notes.rewriteRef" below.
@@@ -1845,7 -1664,7 +1839,7 @@@ pack.threads:
        warning. This is meant to reduce packing time on multiprocessor
        machines. The required amount of memory for the delta search window
        is however multiplied by the number of threads.
 -      Specifying 0 will cause git to auto-detect the number of CPU's
 +      Specifying 0 will cause Git to auto-detect the number of CPU's
        and set the number of threads accordingly.
  
  pack.indexVersion::
        and this config option ignored whenever the corresponding pack is
        larger than 2 GB.
  +
 -If you have an old git that does not understand the version 2 `*.idx` file,
 +If you have an old Git that does not understand the version 2 `*.idx` file,
  cloning or fetching over a non native protocol (e.g. "http" and "rsync")
  that will copy both `*.pack` file and corresponding `*.idx` file from the
  other side may give you a repository that cannot be accessed with your
 -older version of git. If the `*.pack` file is smaller than 2 GB, however,
 +older version of Git. If the `*.pack` file is smaller than 2 GB, however,
  you can use linkgit:git-index-pack[1] on the *.pack file to regenerate
  the `*.idx` file.
  
@@@ -1874,34 -1693,9 +1868,34 @@@ pack.packSizeLimit:
        Common unit suffixes of 'k', 'm', or 'g' are
        supported.
  
 +pack.useBitmaps::
 +      When true, git will use pack bitmaps (if available) when packing
 +      to stdout (e.g., during the server side of a fetch). Defaults to
 +      true. You should not generally need to turn this off unless
 +      you are debugging pack bitmaps.
 +
 +pack.writebitmaps::
 +      When true, git will write a bitmap index when packing all
 +      objects to disk (e.g., when `git repack -a` is run).  This
 +      index can speed up the "counting objects" phase of subsequent
 +      packs created for clones and fetches, at the cost of some disk
 +      space and extra time spent on the initial repack.  Defaults to
 +      false.
 +
 +pack.writeBitmapHashCache::
 +      When true, git will include a "hash cache" section in the bitmap
 +      index (if one is written). This cache can be used to feed git's
 +      delta heuristics, potentially leading to better deltas between
 +      bitmapped and non-bitmapped objects (e.g., when serving a fetch
 +      between an older, bitmapped pack and objects that have been
 +      pushed since the last gc). The downside is that it consumes 4
 +      bytes per object of disk space, and that JGit's bitmap
 +      implementation does not understand it, causing it to complain if
 +      Git and JGit are used on the same repository. Defaults to false.
 +
  pager.<cmd>::
        If the value is boolean, turns on or off pagination of the
 -      output of a particular git subcommand when writing to a tty.
 +      output of a particular Git subcommand when writing to a tty.
        Otherwise, turns on pagination for the subcommand using the
        pager specified by the value of `pager.<cmd>`.  If `--paginate`
        or `--no-pager` is specified on the command line, it takes
@@@ -1918,25 -1712,11 +1912,25 @@@ pretty.<name>:
        Note that an alias with the same name as a built-in format
        will be silently ignored.
  
 +pull.ff::
 +      By default, Git does not create an extra merge commit when merging
 +      a commit that is a descendant of the current commit. Instead, the
 +      tip of the current branch is fast-forwarded. When set to `false`,
 +      this variable tells Git to create an extra merge commit in such
 +      a case (equivalent to giving the `--no-ff` option from the command
 +      line). When set to `only`, only such fast-forward merges are
 +      allowed (equivalent to giving the `--ff-only` option from the
 +      command line).
 +
  pull.rebase::
        When true, rebase branches on top of the fetched branch, instead
        of merging the default branch from the default remote when "git
        pull" is run. See "branch.<name>.rebase" for setting this on a
        per-branch basis.
 ++
 +      When preserve, also pass `--preserve-merges` along to 'git rebase'
 +      so that locally committed merge commits will not be flattened
 +      by running 'git pull'.
  +
  *NOTE*: this is a possibly dangerous operation; do *not* use
  it unless you understand the implications (see linkgit:git-rebase[1]
@@@ -1950,59 -1730,38 +1944,59 @@@ pull.twohead:
        The default merge strategy to use when pulling a single branch.
  
  push.default::
 -      Defines the action git push should take if no refspec is given
 -      on the command line, no refspec is configured in the remote, and
 -      no refspec is implied by any of the options given on the command
 -      line. Possible values are:
 +      Defines the action `git push` should take if no refspec is
 +      explicitly given.  Different values are well-suited for
 +      specific workflows; for instance, in a purely central workflow
 +      (i.e. the fetch source is equal to the push destination),
 +      `upstream` is probably what you want.  Possible values are:
  +
  --
 -* `nothing` - do not push anything.
 -* `matching` - push all branches having the same name in both ends.
 -  This is for those who prepare all the branches into a publishable
 -  shape and then push them out with a single command.  It is not
 -  appropriate for pushing into a repository shared by multiple users,
 -  since locally stalled branches will attempt a non-fast forward push
 -  if other users updated the branch.
 -  +
 -  This used to be the default, and stale web sites may still say so,
 -  but Git 2.0 has changed the default to `simple`.
 -* `upstream` - push the current branch to its upstream branch.
 -  With this, `git push` will update the same remote ref as the one which
 -  is merged by `git pull`, making `push` and `pull` symmetrical.
 -  See "branch.<name>.merge" for how to configure the upstream branch.
 -* `simple` - like `upstream`, but refuses to push if the upstream
 -  branch's name is different from the local one. This is the safest
 -  option and is well-suited for beginners. It has become the default
 -  in Git 2.0.
 -* `current` - push the current branch to a branch of the same name.
 ---
 +
 +* `nothing` - do not push anything (error out) unless a refspec is
 +  explicitly given. This is primarily meant for people who want to
 +  avoid mistakes by always being explicit.
 +
 +* `current` - push the current branch to update a branch with the same
 +  name on the receiving end.  Works in both central and non-central
 +  workflows.
 +
 +* `upstream` - push the current branch back to the branch whose
 +  changes are usually integrated into the current branch (which is
 +  called `@{upstream}`).  This mode only makes sense if you are
 +  pushing to the same repository you would normally pull from
 +  (i.e. central workflow).
 +
 +* `simple` - in centralized workflow, work like `upstream` with an
 +  added safety to refuse to push if the upstream branch's name is
 +  different from the local one.
 ++
 +When pushing to a remote that is different from the remote you normally
 +pull from, work as `current`.  This is the safest option and is suited
 +for beginners.
 ++
- This mode will become the default in Git 2.0.
++This mode has become the default in Git 2.0.
 +
 +* `matching` - push all branches having the same name on both ends.
 +  This makes the repository you are pushing to remember the set of
 +  branches that will be pushed out (e.g. if you always push 'maint'
 +  and 'master' there and no other branches, the repository you push
 +  to will have these two branches, and your local 'maint' and
 +  'master' will be pushed there).
 ++
 +To use this mode effectively, you have to make sure _all_ the
 +branches you would push out are ready to be pushed out before
 +running 'git push', as the whole point of this mode is to allow you
 +to push all of the branches in one go.  If you usually finish work
 +on only one branch and push out the result, while other branches are
 +unfinished, this mode is not for you.  Also this mode is not
 +suitable for pushing into a shared central repository, as other
 +people may add new branches there, or update the tip of existing
 +branches outside your control.
  +
- This is currently the default, but Git 2.0 will change the default
- to `simple`.
 -The `simple`, `current` and `upstream` modes are for those who want to
 -push out a single branch after finishing work, even when the other
 -branches are not yet ready to be pushed out. If you are working with
 -other people to push into the same shared repository, you would want
 -to use one of these.
++This used to be the default, but not since Git 2.0 (`simple` is the
++new default).
 +
 +--
  
  rebase.stat::
        Whether to show a diffstat of what changed upstream since the last
  rebase.autosquash::
        If set to true enable '--autosquash' option by default.
  
 +rebase.autostash::
 +      When set to true, automatically create a temporary stash
 +      before the operation begins, and apply it after the operation
 +      ends.  This means that you can run rebase on a dirty worktree.
 +      However, use with care: the final stash application after a
 +      successful rebase might result in non-trivial conflicts.
 +      Defaults to false.
 +
  receive.autogc::
        By default, git-receive-pack will run "git-gc --auto" after
        receiving data from git-push and updating refs.  You can stop
@@@ -2064,28 -1815,10 +2058,28 @@@ receive.denyNonFastForwards:
        even if that push is forced. This configuration variable is
        set when initializing a shared repository.
  
 +receive.hiderefs::
 +      String(s) `receive-pack` uses to decide which refs to omit
 +      from its initial advertisement.  Use more than one
 +      definitions to specify multiple prefix strings. A ref that
 +      are under the hierarchies listed on the value of this
 +      variable is excluded, and is hidden when responding to `git
 +      push`, and an attempt to update or delete a hidden ref by
 +      `git push` is rejected.
 +
  receive.updateserverinfo::
        If set to true, git-receive-pack will run git-update-server-info
        after receiving data from git-push and updating refs.
  
 +receive.shallowupdate::
 +      If set to true, .git/shallow can be updated when new refs
 +      require new shallow roots. Otherwise those refs are rejected.
 +
 +remote.pushdefault::
 +      The remote to push to by default.  Overrides
 +      `branch.<name>.remote` for all branches, and is overridden by
 +      `branch.<name>.pushremote` for specific branches.
 +
  remote.<name>.url::
        The URL of a remote repository.  See linkgit:git-fetch[1] or
        linkgit:git-push[1].
@@@ -2137,15 -1870,9 +2131,15 @@@ remote.<name>.tagopt:
        linkgit:git-fetch[1].
  
  remote.<name>.vcs::
 -      Setting this to a value <vcs> will cause git to interact with
 +      Setting this to a value <vcs> will cause Git to interact with
        the remote with the git-remote-<vcs> helper.
  
 +remote.<name>.prune::
 +      When set to true, fetching from this remote by default will also
 +      remove any remote-tracking references that no longer exist on the
 +      remote (as if the `--prune` option was given on the command line).
 +      Overrides `fetch.prune` settings, if any.
 +
  remotes.<group>::
        The list of remotes which are fetched by "git remote update
        <group>".  See linkgit:git-remote[1].
  repack.usedeltabaseoffset::
        By default, linkgit:git-repack[1] creates packs that use
        delta-base offset. If you need to share your repository with
 -      git older than version 1.4.4, either directly or via a dumb
 +      Git older than version 1.4.4, either directly or via a dumb
        protocol such as http, then you need to set this option to
 -      "false" and repack. Access from old git versions over the
 +      "false" and repack. Access from old Git versions over the
        native protocol are unaffected by this option.
  
  rerere.autoupdate::
@@@ -2184,10 -1911,6 +2178,10 @@@ sendemail.smtpencryption:
  sendemail.smtpssl::
        Deprecated alias for 'sendemail.smtpencryption = ssl'.
  
 +sendemail.smtpsslcertpath::
 +      Path to ca-certificates (either a directory or a single file).
 +      Set it to an empty string to disable certificate verification.
 +
  sendemail.<identity>.*::
        Identity-specific versions of the 'sendemail.*' parameters
        found below, taking precedence over those when the this
  
  sendemail.aliasesfile::
  sendemail.aliasfiletype::
 +sendemail.annotate::
  sendemail.bcc::
  sendemail.cc::
  sendemail.cccmd::
@@@ -2229,24 -1951,9 +2223,24 @@@ showbranch.default:
  status.relativePaths::
        By default, linkgit:git-status[1] shows paths relative to the
        current directory. Setting this variable to `false` shows paths
 -      relative to the repository root (this was the default for git
 +      relative to the repository root (this was the default for Git
        prior to v1.5.4).
  
 +status.short::
 +      Set to true to enable --short by default in linkgit:git-status[1].
 +      The option --no-short takes precedence over this variable.
 +
 +status.branch::
 +      Set to true to enable --branch by default in linkgit:git-status[1].
 +      The option --no-branch takes precedence over this variable.
 +
 +status.displayCommentPrefix::
 +      If set to true, linkgit:git-status[1] will insert a comment
 +      prefix before each output line (starting with
 +      `core.commentChar`, i.e. `#` by default). This was the
 +      behavior of linkgit:git-status[1] in Git 1.8.4 and previous.
 +      Defaults to false.
 +
  status.showUntrackedFiles::
        By default, linkgit:git-status[1] and linkgit:git-commit[1] show
        files which are not currently tracked by Git. Directories which
@@@ -2271,14 -1978,7 +2265,14 @@@ status.submodulesummary:
        If this is set to a non zero number or true (identical to -1 or an
        unlimited number), the submodule summary will be enabled and a
        summary of commits for modified submodules will be shown (see
 -      --summary-limit option of linkgit:git-submodule[1]).
 +      --summary-limit option of linkgit:git-submodule[1]). Please note
 +      that the summary output command will be suppressed for all
 +      submodules when `diff.ignoreSubmodules` is set to 'all' or only
 +      for those submodules where `submodule.<name>.ignore=all`. To
 +      also view the summary for ignored submodules you can either use
 +      the --ignore-submodules=dirty command line option or the 'git
 +      submodule summary' command, which shows a similar output but does
 +      not honor these settings.
  
  submodule.<name>.path::
  submodule.<name>.url::
@@@ -2289,12 -1989,6 +2283,12 @@@ submodule.<name>.update:
        URL and other values found in the `.gitmodules` file.  See
        linkgit:git-submodule[1] and linkgit:gitmodules[5] for details.
  
 +submodule.<name>.branch::
 +      The remote branch name for a submodule, used by `git submodule
 +      update --remote`.  Set this option to override the value found in
 +      the `.gitmodules` file.  See linkgit:git-submodule[1] and
 +      linkgit:gitmodules[5] for details.
 +
  submodule.<name>.fetchRecurseSubmodules::
        This option can be used to control recursive fetching of this
        submodule. It can be overridden by using the --[no-]recurse-submodules
@@@ -2313,8 -2007,7 +2307,8 @@@ submodule.<name>.ignore:
        submodules that have untracked files in their work tree as changed.
        This setting overrides any setting made in .gitmodules for this submodule,
        both settings can be overridden on the command line by using the
 -      "--ignore-submodules" option.
 +      "--ignore-submodules" option. The 'git submodule' commands are not
 +      affected by this setting.
  
  tar.umask::
        This variable can be used to restrict the permission bits of
@@@ -2328,49 -2021,18 +2322,49 @@@ transfer.fsckObjects:
        not set, the value of this variable is used instead.
        Defaults to false.
  
 +transfer.hiderefs::
 +      This variable can be used to set both `receive.hiderefs`
 +      and `uploadpack.hiderefs` at the same time to the same
 +      values.  See entries for these other variables.
 +
  transfer.unpackLimit::
        When `fetch.unpackLimit` or `receive.unpackLimit` are
        not set, the value of this variable is used instead.
        The default value is 100.
  
 +uploadpack.hiderefs::
 +      String(s) `upload-pack` uses to decide which refs to omit
 +      from its initial advertisement.  Use more than one
 +      definitions to specify multiple prefix strings. A ref that
 +      are under the hierarchies listed on the value of this
 +      variable is excluded, and is hidden from `git ls-remote`,
 +      `git fetch`, etc.  An attempt to fetch a hidden ref by `git
 +      fetch` will fail.  See also `uploadpack.allowtipsha1inwant`.
 +
 +uploadpack.allowtipsha1inwant::
 +      When `uploadpack.hiderefs` is in effect, allow `upload-pack`
 +      to accept a fetch request that asks for an object at the tip
 +      of a hidden ref (by default, such a request is rejected).
 +      see also `uploadpack.hiderefs`.
 +
 +uploadpack.keepalive::
 +      When `upload-pack` has started `pack-objects`, there may be a
 +      quiet period while `pack-objects` prepares the pack. Normally
 +      it would output progress information, but if `--quiet` was used
 +      for the fetch, `pack-objects` will output nothing at all until
 +      the pack data begins. Some clients and networks may consider
 +      the server to be hung and give up. Setting this option instructs
 +      `upload-pack` to send an empty keepalive packet every
 +      `uploadpack.keepalive` seconds. Setting this option to 0
 +      disables keepalive packets entirely. The default is 5 seconds.
 +
  url.<base>.insteadOf::
        Any URL that starts with this value will be rewritten to
        start, instead, with <base>. In cases where some site serves a
        large number of repositories, and serves them with multiple
        access methods, and some users need to use different access
        methods, this feature allows people to specify any of the
 -      equivalent URLs and have git automatically rewrite the URL to
 +      equivalent URLs and have Git automatically rewrite the URL to
        the best alternative for the particular user, even for a
        never-before-seen repository on the site.  When more than one
        insteadOf strings match a given URL, the longest match is used.
@@@ -2381,11 -2043,11 +2375,11 @@@ url.<base>.pushInsteadOf:
        resulting URL will be pushed to. In cases where some site serves
        a large number of repositories, and serves them with multiple
        access methods, some of which do not allow push, this feature
 -      allows people to specify a pull-only URL and have git
 +      allows people to specify a pull-only URL and have Git
        automatically use an appropriate URL to push, even for a
        never-before-seen repository on the site.  When more than one
        pushInsteadOf strings match a given URL, the longest match is
 -      used.  If a remote has an explicit pushurl, git will ignore this
 +      used.  If a remote has an explicit pushurl, Git will ignore this
        setting for that remote.
  
  user.email::
@@@ -2399,11 -2061,11 +2393,11 @@@ user.name:
        environment variables.  See linkgit:git-commit-tree[1].
  
  user.signingkey::
 -      If linkgit:git-tag[1] is not selecting the key you want it to
 -      automatically when creating a signed tag, you can override the
 -      default selection with this variable.  This option is passed
 -      unchanged to gpg's --local-user parameter, so you may specify a key
 -      using any method that gpg supports.
 +      If linkgit:git-tag[1] or linkgit:git-commit[1] is not selecting the
 +      key you want it to automatically when creating a signed tag or
 +      commit, you can override the default selection with this variable.
 +      This option is passed unchanged to gpg's --local-user parameter,
 +      so you may specify a key using any method that gpg supports.
  
  web.browser::
        Specify a web browser that may be used by some commands.
index 2b7f4f939f38626dbd796b808cc21285ad5c8c3d,2d8498a0a2281b824febcae6c1626a05e23014c0..14862fb203b8c269fc391eee886520b1675e540a
@@@ -9,10 -9,9 +9,10 @@@ git-push - Update remote refs along wit
  SYNOPSIS
  --------
  [verse]
 -'git push' [--all | --mirror | --tags] [-n | --dry-run] [--receive-pack=<git-receive-pack>]
 +'git push' [--all | --mirror | --tags] [--follow-tags] [-n | --dry-run] [--receive-pack=<git-receive-pack>]
           [--repo=<repository>] [-f | --force] [--prune] [-v | --verbose] [-u | --set-upstream]
 -         [<repository> [<refspec>...]]
 +         [--force-with-lease[=<refname>[:<expect>]]]
 +         [--no-verify] [<repository> [<refspec>...]]
  
  DESCRIPTION
  -----------
@@@ -24,17 -23,6 +24,17 @@@ You can make interesting things happen 
  every time you push into it, by setting up 'hooks' there.  See
  documentation for linkgit:git-receive-pack[1].
  
 +When the command line does not specify where to push with the
 +`<repository>` argument, `branch.*.remote` configuration for the
 +current branch is consulted to determine where to push.  If the
 +configuration is missing, it defaults to 'origin'.
 +
 +When the command line does not specify what to push with `<refspec>...`
 +arguments or `--all`, `--mirror`, `--tags` options, the command finds
 +the default `<refspec>` by consulting `remote.*.push` configuration,
 +and if it is not found, honors `push.default` configuration to decide
 +what to push (See gitlink:git-config[1] for the meaning of `push.default`).
 +
  
  OPTIONS[[OPTIONS]]
  ------------------
        of a remote (see the section <<REMOTES,REMOTES>> below).
  
  <refspec>...::
 +      Specify what destination ref to update with what source object.
        The format of a <refspec> parameter is an optional plus
 -      `+`, followed by the source ref <src>, followed
 +      `+`, followed by the source object <src>, followed
        by a colon `:`, followed by the destination ref <dst>.
 -      It is used to specify what <src> object the <dst> ref
 -      in the remote repository is to be updated to.  If no
 -      <refspec> is specified on the command line, and if no
 -      <refspec> is configured for the <repository>,
 -      the behavior of the command is controlled by the `push.default`
 -      configuration variable, and if it is unset, the `simple`
 -      behaviour is used (see lingit:git-config[1] and look
 -      for `push.default`).
  +
  The <src> is often the name of the branch you would want to push, but
  it can be any arbitrary "SHA-1 expression", such as `master~4` or
  +
  The <dst> tells which ref on the remote side is updated with this
  push. Arbitrary expressions cannot be used here, an actual ref must
 -be named. If `:`<dst> is omitted, the same ref as <src> will be
 -updated.
 +be named.
 +If `git push [<repository>]` without any `<refspec>` argument is set to
 +update some ref at the destination with `<src>` with
 +`remote.<repository>.push` configuration variable, `:<dst>` part can
 +be omitted---such a push will update a ref that `<src>` normally updates
 +without any `<refspec>` on the command line.  Otherwise, missing
 +`:<dst>` means to update the same ref as the `<src>`.
  +
  The object referenced by <src> is used to update the <dst> reference
 -on the remote side, but by default this is only allowed if the
 -update can fast-forward <dst>.  By having the optional leading `+`,
 -you can tell git to update the <dst> ref even when the update is not a
 -fast-forward.  This does *not* attempt to merge <src> into <dst>.  See
 +on the remote side.  By default this is only allowed if <dst> is not
 +a tag (annotated or lightweight), and then only if it can fast-forward
 +<dst>.  By having the optional leading `+`, you can tell Git to update
 +the <dst> ref even if it is not allowed by default (e.g., it is not a
 +fast-forward.)  This does *not* attempt to merge <src> into <dst>.  See
  EXAMPLES below for details.
  +
  `tag <tag>` means the same as `refs/tags/<tag>:refs/tags/<tag>`.
@@@ -78,13 -67,13 +78,13 @@@ Pushing an empty <src> allows you to de
  the remote repository.
  +
  The special refspec `:` (or `+:` to allow non-fast-forward updates)
 -directs git to push "matching" branches: for every branch that exists on
 +directs Git to push "matching" branches: for every branch that exists on
  the local side, the remote side is updated if a branch of the same name
  already exists on the remote side.
  
  --all::
-       Instead of naming each ref to push, specifies that all
-       refs under `refs/heads/` be pushed.
+       Push all branches (i.e. refs under `refs/heads/`); cannot be
+       used with other <refspec>.
  
  --prune::
        Remove remote branches that don't have a local counterpart. For example
        addition to refspecs explicitly listed on the command
        line.
  
 +--follow-tags::
 +      Push all the refs that would be pushed without this option,
 +      and also push annotated tags in `refs/tags` that are missing
 +      from the remote but are pointing at commit-ish that are
 +      reachable from the refs being pushed.
 +
  --receive-pack=<git-receive-pack>::
  --exec=<git-receive-pack>::
        Path to the 'git-receive-pack' program on the remote
        repository over ssh, and you do not have the program in
        a directory on the default $PATH.
  
 +--[no-]force-with-lease::
 +--force-with-lease=<refname>::
 +--force-with-lease=<refname>:<expect>::
 +      Usually, "git push" refuses to update a remote ref that is
 +      not an ancestor of the local ref used to overwrite it.
 ++
 +This option bypasses the check, but instead requires that the
 +current value of the ref to be the expected value.  "git push"
 +fails otherwise.
 ++
 +Imagine that you have to rebase what you have already published.
 +You will have to bypass the "must fast-forward" rule in order to
 +replace the history you originally published with the rebased history.
 +If somebody else built on top of your original history while you are
 +rebasing, the tip of the branch at the remote may advance with her
 +commit, and blindly pushing with `--force` will lose her work.
 ++
 +This option allows you to say that you expect the history you are
 +updating is what you rebased and want to replace. If the remote ref
 +still points at the commit you specified, you can be sure that no
 +other people did anything to the ref (it is like taking a "lease" on
 +the ref without explicitly locking it, and you update the ref while
 +making sure that your earlier "lease" is still valid).
 ++
 +`--force-with-lease` alone, without specifying the details, will protect
 +all remote refs that are going to be updated by requiring their
 +current value to be the same as the remote-tracking branch we have
 +for them, unless specified with a `--force-with-lease=<refname>:<expect>`
 +option that explicitly states what the expected value is.
 ++
 +`--force-with-lease=<refname>`, without specifying the expected value, will
 +protect the named ref (alone), if it is going to be updated, by
 +requiring its current value to be the same as the remote-tracking
 +branch we have for it.
 ++
 +`--force-with-lease=<refname>:<expect>` will protect the named ref (alone),
 +if it is going to be updated, by requiring its current value to be
 +the same as the specified value <expect> (which is allowed to be
 +different from the remote-tracking branch we have for the refname,
 +or we do not even have to have such a remote-tracking branch when
 +this form is used).
 ++
 +Note that all forms other than `--force-with-lease=<refname>:<expect>`
 +that specifies the expected current value of the ref explicitly are
 +still experimental and their semantics may change as we gain experience
 +with this feature.
 ++
 +"--no-force-with-lease" will cancel all the previous --force-with-lease on the
 +command line.
 +
  -f::
  --force::
        Usually, the command refuses to update a remote ref that is
        not an ancestor of the local ref used to overwrite it.
 -      This flag disables the check.  This can cause the
 -      remote repository to lose commits; use it with care.
 +      Also, when `--force-with-lease` option is used, the command refuses
 +      to update a remote ref whose current value does not match
 +      what is expected.
 ++
 +This flag disables these checks, and can cause the remote repository
 +to lose commits; use it with care.
 ++
 +Note that `--force` applies to all the refs that are pushed, hence
 +using it with `push.default` set to `matching` or with multiple push
 +destinations configured with `remote.*.push` may overwrite refs
 +other than the current branch (including local refs that are
 +strictly behind their remote counterpart).  To force a push to only
 +one branch, use a `+` in front of the refspec to push (e.g `git push
 +origin +master` to force a push to the `master` branch). See the
 +`<refspec>...` section above for details.
  
  --repo=<repository>::
        This option is only relevant if no <repository> argument is
@@@ -231,7 -151,8 +231,7 @@@ useful if you write an alias or script 
        linkgit:git-pull[1] and other commands. For more information,
        see 'branch.<name>.merge' in linkgit:git-config[1].
  
 ---thin::
 ---no-thin::
 +--[no-]thin::
        These options are passed to linkgit:git-send-pack[1]. A thin transfer
        significantly reduces the amount of sent data when the sender and
        receiver share many of the same objects in common. The default is
  --recurse-submodules=check|on-demand::
        Make sure all submodule commits used by the revisions to be
        pushed are available on a remote-tracking branch. If 'check' is
 -      used git will verify that all submodule commits that changed in
 +      used Git will verify that all submodule commits that changed in
        the revisions to be pushed are available on at least one remote
        of the submodule. If any commits are missing the push will be
        aborted and exit with non-zero status. If 'on-demand' is used
        be pushed. If on-demand was not able to push all necessary
        revisions it will also be aborted and exit with non-zero status.
  
 +--[no-]verify::
 +      Toggle the pre-push hook (see linkgit:githooks[5]).  The
 +      default is \--verify, giving the hook a chance to prevent the
 +      push.  With \--no-verify, the hook is bypassed completely.
 +
  
  include::urls-remotes.txt[]
  
@@@ -276,7 -192,7 +276,7 @@@ OUTPU
  ------
  
  The output of "git push" depends on the transport method used; this
 -section describes the output when pushing over the git protocol (either
 +section describes the output when pushing over the Git protocol (either
  locally or via ssh).
  
  The status of the push is output in tabular form, with each line
@@@ -442,8 -358,10 +442,10 @@@ Example
        configured for the current branch).
  
  `git push origin`::
-       Without additional configuration, works like
-       `git push origin :`.
+       Without additional configuration, pushes the current branch to
+       the configured upstream (`remote.origin.merge` configuration
+       variable) if it has the same name as the current branch, and
+       errors out without pushing otherwise.
  +
  The default behavior of this command when no <refspec> is given can be
  configured by setting the `push` option of the remote, or the `push.default`
diff --combined advice.c
index 3eca9f5ffdd6e3596584ed0aa79e2634683bd496,5afed9367044242461a21be749216e2c081f3baa..486f823c78118212080a48e74debd7adae241cda
+++ b/advice.c
@@@ -1,45 -1,26 +1,43 @@@
  #include "cache.h"
  
 -int advice_push_nonfastforward = 1;
 +int advice_push_update_rejected = 1;
  int advice_push_non_ff_current = 1;
- int advice_push_non_ff_default = 1;
  int advice_push_non_ff_matching = 1;
 +int advice_push_already_exists = 1;
 +int advice_push_fetch_first = 1;
 +int advice_push_needs_force = 1;
  int advice_status_hints = 1;
 +int advice_status_u_option = 1;
  int advice_commit_before_merge = 1;
  int advice_resolve_conflict = 1;
  int advice_implicit_identity = 1;
  int advice_detached_head = 1;
 +int advice_set_upstream_failure = 1;
 +int advice_object_name_warning = 1;
 +int advice_rm_hints = 1;
  
  static struct {
        const char *name;
        int *preference;
  } advice_config[] = {
 -      { "pushnonfastforward", &advice_push_nonfastforward },
 +      { "pushupdaterejected", &advice_push_update_rejected },
        { "pushnonffcurrent", &advice_push_non_ff_current },
-       { "pushnonffdefault", &advice_push_non_ff_default },
        { "pushnonffmatching", &advice_push_non_ff_matching },
 +      { "pushalreadyexists", &advice_push_already_exists },
 +      { "pushfetchfirst", &advice_push_fetch_first },
 +      { "pushneedsforce", &advice_push_needs_force },
        { "statushints", &advice_status_hints },
 +      { "statusuoption", &advice_status_u_option },
        { "commitbeforemerge", &advice_commit_before_merge },
        { "resolveconflict", &advice_resolve_conflict },
        { "implicitidentity", &advice_implicit_identity },
        { "detachedhead", &advice_detached_head },
 +      { "setupstreamfailure", &advice_set_upstream_failure },
 +      { "objectnamewarning", &advice_object_name_warning },
 +      { "rmhints", &advice_rm_hints },
 +
 +      /* make this an alias for backward compatibility */
 +      { "pushnonfastforward", &advice_push_update_rejected }
  };
  
  void advise(const char *advice, ...)
diff --combined advice.h
index 08fbc8ee3ce79f265bbe15b63e2ae561ee8a0857,2c800e6787546db9bff62388430a02cc20a40b95..5ecc6c154e5a7207d18bbb05da5e35b2b4eae230
+++ b/advice.h
@@@ -3,25 -3,16 +3,24 @@@
  
  #include "git-compat-util.h"
  
 -extern int advice_push_nonfastforward;
 +extern int advice_push_update_rejected;
  extern int advice_push_non_ff_current;
- extern int advice_push_non_ff_default;
  extern int advice_push_non_ff_matching;
 +extern int advice_push_already_exists;
 +extern int advice_push_fetch_first;
 +extern int advice_push_needs_force;
  extern int advice_status_hints;
 +extern int advice_status_u_option;
  extern int advice_commit_before_merge;
  extern int advice_resolve_conflict;
  extern int advice_implicit_identity;
  extern int advice_detached_head;
 +extern int advice_set_upstream_failure;
 +extern int advice_object_name_warning;
 +extern int advice_rm_hints;
  
  int git_default_advice_config(const char *var, const char *value);
 +__attribute__((format (printf, 1, 2)))
  void advise(const char *advice, ...);
  int error_resolve_conflict(const char *me);
  extern void NORETURN die_resolve_conflict(const char *me);
diff --combined builtin/push.c
index 0e50ddbb01342128d9118217118726000bdeaff6,9f7c25209e972aab78bf1fd97529fcc10173fe3c..3dd160c6b6a9a6af5010163f86b8a1ac2095dee1
@@@ -15,18 -15,15 +15,17 @@@ static const char * const push_usage[] 
        NULL,
  };
  
 -static int thin;
 +static int thin = 1;
  static int deleterefs;
  static const char *receivepack;
  static int verbosity;
  static int progress = -1;
  
 +static struct push_cas_option cas;
 +
  static const char **refspec;
  static int refspec_nr;
  static int refspec_alloc;
- static int default_matching_used;
  
  static void add_refspec(const char *ref)
  {
        refspec[refspec_nr-1] = ref;
  }
  
 -static void set_refspecs(const char **refs, int nr)
 +static const char *map_refspec(const char *ref,
 +                             struct remote *remote, struct ref *local_refs)
  {
 +      struct ref *matched = NULL;
 +
 +      /* Does "ref" uniquely name our ref? */
 +      if (count_refspec_match(ref, local_refs, &matched) != 1)
 +              return ref;
 +
 +      if (remote->push) {
 +              struct refspec query;
 +              memset(&query, 0, sizeof(struct refspec));
 +              query.src = matched->name;
 +              if (!query_refspecs(remote->push, remote->push_refspec_nr, &query) &&
 +                  query.dst) {
 +                      struct strbuf buf = STRBUF_INIT;
 +                      strbuf_addf(&buf, "%s%s:%s",
 +                                  query.force ? "+" : "",
 +                                  query.src, query.dst);
 +                      return strbuf_detach(&buf, NULL);
 +              }
 +      }
 +
 +      if (push_default == PUSH_DEFAULT_UPSTREAM &&
 +          !prefixcmp(matched->name, "refs/heads/")) {
 +              struct branch *branch = branch_get(matched->name + 11);
 +              if (branch->merge_nr == 1 && branch->merge[0]->src) {
 +                      struct strbuf buf = STRBUF_INIT;
 +                      strbuf_addf(&buf, "%s:%s",
 +                                  ref, branch->merge[0]->src);
 +                      return strbuf_detach(&buf, NULL);
 +              }
 +      }
 +
 +      return ref;
 +}
 +
 +static void set_refspecs(const char **refs, int nr, const char *repo)
 +{
 +      struct remote *remote = NULL;
 +      struct ref *local_refs = NULL;
        int i;
 +
        for (i = 0; i < nr; i++) {
                const char *ref = refs[i];
                if (!strcmp("tag", ref)) {
 -                      char *tag;
 -                      int len;
 +                      struct strbuf tagref = STRBUF_INIT;
                        if (nr <= ++i)
                                die(_("tag shorthand without <tag>"));
 -                      len = strlen(refs[i]) + 11;
 -                      if (deleterefs) {
 -                              tag = xmalloc(len+1);
 -                              strcpy(tag, ":refs/tags/");
 -                      } else {
 -                              tag = xmalloc(len);
 -                              strcpy(tag, "refs/tags/");
 +                      ref = refs[i];
 +                      if (deleterefs)
 +                              strbuf_addf(&tagref, ":refs/tags/%s", ref);
 +                      else
 +                              strbuf_addf(&tagref, "refs/tags/%s", ref);
 +                      ref = strbuf_detach(&tagref, NULL);
 +              } else if (deleterefs) {
 +                      struct strbuf delref = STRBUF_INIT;
 +                      if (strchr(ref, ':'))
 +                              die(_("--delete only accepts plain target ref names"));
 +                      strbuf_addf(&delref, ":%s", ref);
 +                      ref = strbuf_detach(&delref, NULL);
 +              } else if (!strchr(ref, ':')) {
 +                      if (!remote) {
 +                              /* lazily grab remote and local_refs */
 +                              remote = remote_get(repo);
 +                              local_refs = get_local_heads();
                        }
 -                      strcat(tag, refs[i]);
 -                      ref = tag;
 -              } else if (deleterefs && !strchr(ref, ':')) {
 -                      char *delref;
 -                      int len = strlen(ref)+1;
 -                      delref = xmalloc(len+1);
 -                      strcpy(delref, ":");
 -                      strcat(delref, ref);
 -                      ref = delref;
 -              } else if (deleterefs)
 -                      die(_("--delete only accepts plain target ref names"));
 +                      ref = map_refspec(ref, remote, local_refs);
 +              }
                add_refspec(ref);
        }
  }
@@@ -134,7 -91,7 +133,7 @@@ static NORETURN int die_push_simple(str
        if (!short_upstream)
                short_upstream = branch->merge[0]->src;
        /*
 -       * Don't show advice for people who explicitely set
 +       * Don't show advice for people who explicitly set
         * push.default.
         */
        if (push_default == PUSH_DEFAULT_UNSPECIFIED)
            remote->name, branch->name, advice_maybe);
  }
  
 -static void setup_push_upstream(struct remote *remote, int simple)
 +static const char message_detached_head_die[] =
 +      N_("You are not currently on a branch.\n"
 +         "To push the history leading to the current (detached HEAD)\n"
 +         "state now, use\n"
 +         "\n"
 +         "    git push %s HEAD:<name-of-remote-branch>\n");
 +
 +static void setup_push_upstream(struct remote *remote, struct branch *branch,
 +                              int triangular)
  {
        struct strbuf refspec = STRBUF_INIT;
 -      struct branch *branch = branch_get(NULL);
 +
        if (!branch)
 -              die(_("You are not currently on a branch.\n"
 -                  "To push the history leading to the current (detached HEAD)\n"
 -                  "state now, use\n"
 -                  "\n"
 -                  "    git push %s HEAD:<name-of-remote-branch>\n"),
 -                  remote->name);
 +              die(_(message_detached_head_die), remote->name);
        if (!branch->merge_nr || !branch->merge || !branch->remote_name)
                die(_("The current branch %s has no upstream branch.\n"
                    "To push the current branch and set the remote as upstream, use\n"
        if (branch->merge_nr != 1)
                die(_("The current branch %s has multiple upstream branches, "
                    "refusing to push."), branch->name);
 -      if (strcmp(branch->remote_name, remote->name))
 +      if (triangular)
                die(_("You are pushing to remote '%s', which is not the upstream of\n"
                      "your current branch '%s', without telling me what to push\n"
                      "to update which remote branch."),
                    remote->name, branch->name);
 -      if (simple && strcmp(branch->refname, branch->merge[0]->src))
 -              die_push_simple(branch, remote);
 +
 +      if (push_default == PUSH_DEFAULT_SIMPLE) {
 +              /* Additional safety */
 +              if (strcmp(branch->refname, branch->merge[0]->src))
 +                      die_push_simple(branch, remote);
 +      }
  
        strbuf_addf(&refspec, "%s:%s", branch->name, branch->merge[0]->src);
        add_refspec(refspec.buf);
  }
  
 +static void setup_push_current(struct remote *remote, struct branch *branch)
 +{
 +      if (!branch)
 +              die(_(message_detached_head_die), remote->name);
 +      add_refspec(branch->name);
 +}
 +
  static char warn_unspecified_push_default_msg[] =
- N_("push.default is unset; its implicit value is changing in\n"
+ N_("push.default is unset; its implicit value has changed in\n"
     "Git 2.0 from 'matching' to 'simple'. To squelch this message\n"
-    "and maintain the current behavior after the default changes, use:\n"
+    "and maintain the traditional behavior, use:\n"
     "\n"
     "  git config --global push.default matching\n"
     "\n"
     "\n"
     "  git config --global push.default simple\n"
     "\n"
 +   "When push.default is set to 'matching', git will push local branches\n"
 +   "to the remote branches that already exist with the same name.\n"
 +   "\n"
 +   "In Git 2.0, Git will default to the more conservative 'simple'\n"
 +   "behavior, which only pushes the current branch to the corresponding\n"
 +   "remote branch that 'git pull' uses to update the current branch.\n"
 +   "\n"
     "See 'git help config' and search for 'push.default' for further information.\n"
     "(the 'simple' mode was introduced in Git 1.7.11. Use the similar mode\n"
     "'current' instead of 'simple' if you sometimes use older versions of Git)");
@@@ -234,40 -170,28 +233,40 @@@ static void warn_unspecified_push_defau
        warning("%s\n", _(warn_unspecified_push_default_msg));
  }
  
 +static int is_workflow_triangular(struct remote *remote)
 +{
 +      struct remote *fetch_remote = remote_get(NULL);
 +      return (fetch_remote && fetch_remote != remote);
 +}
 +
  static void setup_default_push_refspecs(struct remote *remote)
  {
 +      struct branch *branch = branch_get(NULL);
 +      int triangular = is_workflow_triangular(remote);
 +
        switch (push_default) {
        default:
-       case PUSH_DEFAULT_UNSPECIFIED:
-               default_matching_used = 1;
-               warn_unspecified_push_default_configuration();
-               /* fallthru */
        case PUSH_DEFAULT_MATCHING:
                add_refspec(":");
                break;
  
+       case PUSH_DEFAULT_UNSPECIFIED:
+               warn_unspecified_push_default_configuration();
+               /* fallthru */
        case PUSH_DEFAULT_SIMPLE:
 -              setup_push_upstream(remote, 1);
 +              if (triangular)
 +                      setup_push_current(remote, branch);
 +              else
 +                      setup_push_upstream(remote, branch, triangular);
                break;
  
        case PUSH_DEFAULT_UPSTREAM:
 -              setup_push_upstream(remote, 0);
 +              setup_push_upstream(remote, branch, triangular);
                break;
  
        case PUSH_DEFAULT_CURRENT:
 -              add_refspec("HEAD");
 +              setup_push_current(remote, branch);
                break;
  
        case PUSH_DEFAULT_NOTHING:
  
  static const char message_advice_pull_before_push[] =
        N_("Updates were rejected because the tip of your current branch is behind\n"
 -         "its remote counterpart. Merge the remote changes (e.g. 'git pull')\n"
 -         "before pushing again.\n"
 +         "its remote counterpart. Integrate the remote changes (e.g.\n"
 +         "'git pull ...') before pushing again.\n"
           "See the 'Note about fast-forwards' in 'git push --help' for details.");
  
- static const char message_advice_use_upstream[] =
-       N_("Updates were rejected because a pushed branch tip is behind its remote\n"
-          "counterpart. If you did not intend to push that branch, you may want to\n"
-          "specify branches to push or set the 'push.default' configuration variable\n"
-          "to 'simple', 'current' or 'upstream' to push only the current branch.");
  static const char message_advice_checkout_pull_push[] =
        N_("Updates were rejected because a pushed branch tip is behind its remote\n"
 -         "counterpart. Check out this branch and merge the remote changes\n"
 -         "(e.g. 'git pull') before pushing again.\n"
 +         "counterpart. Check out this branch and integrate the remote changes\n"
 +         "(e.g. 'git pull ...') before pushing again.\n"
           "See the 'Note about fast-forwards' in 'git push --help' for details.");
  
 +static const char message_advice_ref_fetch_first[] =
 +      N_("Updates were rejected because the remote contains work that you do\n"
 +         "not have locally. This is usually caused by another repository pushing\n"
 +         "to the same ref. You may want to first integrate the remote changes\n"
 +         "(e.g., 'git pull ...') before pushing again.\n"
 +         "See the 'Note about fast-forwards' in 'git push --help' for details.");
 +
 +static const char message_advice_ref_already_exists[] =
 +      N_("Updates were rejected because the tag already exists in the remote.");
 +
 +static const char message_advice_ref_needs_force[] =
 +      N_("You cannot update a remote ref that points at a non-commit object,\n"
 +         "or update a remote ref to make it point at a non-commit object,\n"
 +         "without using the '--force' option.\n");
 +
  static void advise_pull_before_push(void)
  {
 -      if (!advice_push_non_ff_current || !advice_push_nonfastforward)
 +      if (!advice_push_non_ff_current || !advice_push_update_rejected)
                return;
        advise(_(message_advice_pull_before_push));
  }
  
- static void advise_use_upstream(void)
- {
-       if (!advice_push_non_ff_default || !advice_push_update_rejected)
-               return;
-       advise(_(message_advice_use_upstream));
- }
  static void advise_checkout_pull_push(void)
  {
 -      if (!advice_push_non_ff_matching || !advice_push_nonfastforward)
 +      if (!advice_push_non_ff_matching || !advice_push_update_rejected)
                return;
        advise(_(message_advice_checkout_pull_push));
  }
  
 +static void advise_ref_already_exists(void)
 +{
 +      if (!advice_push_already_exists || !advice_push_update_rejected)
 +              return;
 +      advise(_(message_advice_ref_already_exists));
 +}
 +
 +static void advise_ref_fetch_first(void)
 +{
 +      if (!advice_push_fetch_first || !advice_push_update_rejected)
 +              return;
 +      advise(_(message_advice_ref_fetch_first));
 +}
 +
 +static void advise_ref_needs_force(void)
 +{
 +      if (!advice_push_needs_force || !advice_push_update_rejected)
 +              return;
 +      advise(_(message_advice_ref_needs_force));
 +}
 +
  static int push_with_options(struct transport *transport, int flags)
  {
        int err;
 -      int nonfastforward;
 +      unsigned int reject_reasons;
  
        transport_set_verbosity(transport, verbosity, progress);
  
        if (receivepack)
                transport_set_option(transport,
                                     TRANS_OPT_RECEIVEPACK, receivepack);
 -      if (thin)
 -              transport_set_option(transport, TRANS_OPT_THIN, "yes");
 +      transport_set_option(transport, TRANS_OPT_THIN, thin ? "yes" : NULL);
 +
 +      if (!is_empty_cas(&cas)) {
 +              if (!transport->smart_options)
 +                      die("underlying transport does not support --%s option",
 +                          CAS_OPT_NAME);
 +              transport->smart_options->cas = &cas;
 +      }
  
        if (verbosity > 0)
                fprintf(stderr, _("Pushing to %s\n"), transport->url);
        err = transport_push(transport, refspec_nr, refspec, flags,
 -                           &nonfastforward);
 +                           &reject_reasons);
        if (err != 0)
                error(_("failed to push some refs to '%s'"), transport->url);
  
        if (!err)
                return 0;
  
 -      switch (nonfastforward) {
 -      default:
 -              break;
 -      case NON_FF_HEAD:
 +      if (reject_reasons & REJECT_NON_FF_HEAD) {
                advise_pull_before_push();
 -              break;
 -      case NON_FF_OTHER:
 +      } else if (reject_reasons & REJECT_NON_FF_OTHER) {
-               if (default_matching_used)
-                       advise_use_upstream();
-               else
-                       advise_checkout_pull_push();
+               advise_checkout_pull_push();
 -              break;
 +      } else if (reject_reasons & REJECT_ALREADY_EXISTS) {
 +              advise_ref_already_exists();
 +      } else if (reject_reasons & REJECT_FETCH_FIRST) {
 +              advise_ref_fetch_first();
 +      } else if (reject_reasons & REJECT_NEEDS_FORCE) {
 +              advise_ref_needs_force();
        }
  
        return 1;
  static int do_push(const char *repo, int flags)
  {
        int i, errs;
 -      struct remote *remote = remote_get(repo);
 +      struct remote *remote = pushremote_get(repo);
        const char **url;
        int url_nr;
  
@@@ -501,19 -366,15 +484,19 @@@ int cmd_push(int argc, const char **arg
                OPT_BIT( 0 , "all", &flags, N_("push all refs"), TRANSPORT_PUSH_ALL),
                OPT_BIT( 0 , "mirror", &flags, N_("mirror all refs"),
                            (TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE)),
 -              OPT_BOOLEAN( 0, "delete", &deleterefs, N_("delete refs")),
 -              OPT_BOOLEAN( 0 , "tags", &tags, N_("push tags (can't be used with --all or --mirror)")),
 +              OPT_BOOL( 0, "delete", &deleterefs, N_("delete refs")),
 +              OPT_BOOL( 0 , "tags", &tags, N_("push tags (can't be used with --all or --mirror)")),
                OPT_BIT('n' , "dry-run", &flags, N_("dry run"), TRANSPORT_PUSH_DRY_RUN),
                OPT_BIT( 0,  "porcelain", &flags, N_("machine-readable output"), TRANSPORT_PUSH_PORCELAIN),
                OPT_BIT('f', "force", &flags, N_("force updates"), TRANSPORT_PUSH_FORCE),
 +              { OPTION_CALLBACK,
 +                0, CAS_OPT_NAME, &cas, N_("refname>:<expect"),
 +                N_("require old value of ref to be at this value"),
 +                PARSE_OPT_OPTARG, parseopt_push_cas_option },
                { OPTION_CALLBACK, 0, "recurse-submodules", &flags, N_("check"),
                        N_("control recursive pushing of submodules"),
                        PARSE_OPT_OPTARG, option_parse_recurse_submodules },
 -              OPT_BOOLEAN( 0 , "thin", &thin, N_("use thin pack")),
 +              OPT_BOOL( 0 , "thin", &thin, N_("use thin pack")),
                OPT_STRING( 0 , "receive-pack", &receivepack, "receive-pack", N_("receive pack program")),
                OPT_STRING( 0 , "exec", &receivepack, "receive-pack", N_("receive pack program")),
                OPT_BIT('u', "set-upstream", &flags, N_("set upstream for git pull/status"),
                OPT_BOOL(0, "progress", &progress, N_("force progress reporting")),
                OPT_BIT(0, "prune", &flags, N_("prune locally removed refs"),
                        TRANSPORT_PUSH_PRUNE),
 +              OPT_BIT(0, "no-verify", &flags, N_("bypass pre-push hook"), TRANSPORT_PUSH_NO_HOOK),
 +              OPT_BIT(0, "follow-tags", &flags, N_("push missing but relevant tags"),
 +                      TRANSPORT_PUSH_FOLLOW_TAGS),
                OPT_END()
        };
  
  
        if (argc > 0) {
                repo = argv[0];
 -              set_refspecs(argv + 1, argc - 1);
 +              set_refspecs(argv + 1, argc - 1, repo);
        }
  
        rc = do_push(repo, flags);