diff options
author | 2020-08-17 17:02:42 -0700 | |
---|---|---|
committer | 2020-08-17 17:02:42 -0700 | |
commit | 95c687bf85b1922cc4b8c441cd8aeb4048977001 (patch) | |
tree | 39fea20be7f6de6b81a5d9fd8a5bcaddcaee099a /Documentation | |
parent | Merge branch 'dd/send-email-config' (diff) | |
parent | Make HEAD a PSEUDOREF rather than PER_WORKTREE. (diff) | |
download | tgif-95c687bf85b1922cc4b8c441cd8aeb4048977001.tar.xz |
Merge branch 'hn/reftable-prep-part-2'
Further preliminary change to refs API.
* hn/reftable-prep-part-2:
Make HEAD a PSEUDOREF rather than PER_WORKTREE.
Modify pseudo refs through ref backend storage
t1400: use git rev-parse for testing PSEUDOREF existence
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-update-ref.txt | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/Documentation/git-update-ref.txt b/Documentation/git-update-ref.txt index 3e737c2360..d401234b03 100644 --- a/Documentation/git-update-ref.txt +++ b/Documentation/git-update-ref.txt @@ -148,12 +148,13 @@ still see a subset of the modifications. LOGGING UPDATES --------------- -If config parameter "core.logAllRefUpdates" is true and the ref is one under -"refs/heads/", "refs/remotes/", "refs/notes/", or the symbolic ref HEAD; or -the file "$GIT_DIR/logs/<ref>" exists then `git update-ref` will append -a line to the log file "$GIT_DIR/logs/<ref>" (dereferencing all -symbolic refs before creating the log name) describing the change -in ref value. Log lines are formatted as: +If config parameter "core.logAllRefUpdates" is true and the ref is one +under "refs/heads/", "refs/remotes/", "refs/notes/", or a pseudoref +like HEAD or ORIG_HEAD; or the file "$GIT_DIR/logs/<ref>" exists then +`git update-ref` will append a line to the log file +"$GIT_DIR/logs/<ref>" (dereferencing all symbolic refs before creating +the log name) describing the change in ref value. Log lines are +formatted as: oldsha1 SP newsha1 SP committer LF |