diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-05-02 13:51:45 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-05-02 13:51:45 -0700 |
commit | d274fc093cbdcddbf9aff5f79de4e9445f3363d7 (patch) | |
tree | 0abf168a8760bee8686a8836b4b29a366eab0118 /Documentation/git-fast-import.txt | |
parent | 1be65eda6a7018445ebdd9cfec4b1caab4db34ba (diff) | |
parent | 6cf378f0cbe7c7f944637892caeb9058c90a185a (diff) | |
download | git-d274fc093cbdcddbf9aff5f79de4e9445f3363d7.tar.gz git-d274fc093cbdcddbf9aff5f79de4e9445f3363d7.tar.xz |
Merge branch 'jk/doc-asciidoc-inline-literal'
Our documentation was written for an ancient version of AsciiDoc,
making the source not very readable.
By Jeff King
* jk/doc-asciidoc-inline-literal:
docs: stop using asciidoc no-inline-literal
Diffstat (limited to 'Documentation/git-fast-import.txt')
-rw-r--r-- | Documentation/git-fast-import.txt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Documentation/git-fast-import.txt b/Documentation/git-fast-import.txt index b52dca513..2620d28b4 100644 --- a/Documentation/git-fast-import.txt +++ b/Documentation/git-fast-import.txt @@ -479,9 +479,9 @@ current branch value should be written as: ---- from refs/heads/branch^0 ---- -The `{caret}0` suffix is necessary as fast-import does not permit a branch to +The `^0` suffix is necessary as fast-import does not permit a branch to start from itself, and the branch is created in memory before the -`from` command is even read from the input. Adding `{caret}0` will force +`from` command is even read from the input. Adding `^0` will force fast-import to resolve the commit through Git's revision parsing library, rather than its internal branch table, thereby loading in the existing value of the branch. @@ -979,7 +979,7 @@ Reading from a named tree:: See `filemodify` above for a detailed description of `<path>`. -Output uses the same format as `git ls-tree <tree> {litdd} <path>`: +Output uses the same format as `git ls-tree <tree> -- <path>`: ==== <mode> SP ('blob' | 'tree' | 'commit') SP <dataref> HT <path> LF |