diff options
author | Jonathan Nieder <jrnieder@gmail.com> | 2010-12-03 14:04:17 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2010-12-03 15:22:52 -0800 |
commit | 3bae8d4da1ee7fce0cf1ef9fcf49656ca1e48769 (patch) | |
tree | ee9109391001e290017e24ed0f1ecc14f7dfd7e3 /Documentation | |
parent | Prepare for 1.7.3.3 (diff) | |
download | tgif-3bae8d4da1ee7fce0cf1ef9fcf49656ca1e48769.tar.xz |
Documentation: do not misinterpret pull refspec as bold text
Use the {asterisk} entity to avoid mistreating the asterisks
in "(e.g., refs/heads/*:refs/remotes/origin/*)" as delimiters
for bold text.
From a quick search with 'git grep -e "\*.*\*"', this seems to
be the last example of this particular formatting problem.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-pull.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/git-pull.txt b/Documentation/git-pull.txt index e1b0bd2868..abbc3eb3e0 100644 --- a/Documentation/git-pull.txt +++ b/Documentation/git-pull.txt @@ -27,8 +27,8 @@ With `--rebase`, it runs 'git rebase' instead of 'git merge'. passed to linkgit:git-fetch[1]. <refspec> can name an arbitrary remote ref (for example, the name of a tag) or even a collection of refs with corresponding remote tracking branches -(e.g., refs/heads/*:refs/remotes/origin/*), but usually it is -the name of a branch in the remote repository. +(e.g., refs/heads/{asterisk}:refs/remotes/origin/{asterisk}), +but usually it is the name of a branch in the remote repository. Default values for <repository> and <branch> are read from the "remote" and "merge" configuration for the current branch |