summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-07-17 15:15:08 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-07-17 15:15:08 -0400
commit12df7d54f0fce2532b50368251fde6f747d0980d (patch)
tree9b049b0a0d56efa7a66944249d39afe059ba0b95 /doc
parent535697fb264705c6a7b291e0b4a2caa630f55d6a (diff)
log: Added --all option.
Diffstat (limited to 'doc')
-rw-r--r--doc/git-annex-log.mdwn6
-rw-r--r--doc/todo/Log_function_to_enumerate_all_recent_git-annex_changes.mdwn2
-rw-r--r--doc/todo/Log_function_to_enumerate_all_recent_git-annex_changes/comment_2_18d1c7d8f4f0214c4d89119e9efb9b4a._comment16
3 files changed, 24 insertions, 0 deletions
diff --git a/doc/git-annex-log.mdwn b/doc/git-annex-log.mdwn
index 9575e3719..b2d9c0db9 100644
--- a/doc/git-annex-log.mdwn
+++ b/doc/git-annex-log.mdwn
@@ -34,6 +34,12 @@ showing each repository they were added to ("+") and removed from ("-").
The [[git-annex-matching-options]](1)
can be used to specify files to act on.
+* `--all`
+
+ Shows location log changes to all files, with the most recent changes first.
+ In this mode, the names of files are not available and keys are displayed
+ instead.
+
# SEE ALSO
[[git-annex]](1)
diff --git a/doc/todo/Log_function_to_enumerate_all_recent_git-annex_changes.mdwn b/doc/todo/Log_function_to_enumerate_all_recent_git-annex_changes.mdwn
index fc10c5e60..b13bceccf 100644
--- a/doc/todo/Log_function_to_enumerate_all_recent_git-annex_changes.mdwn
+++ b/doc/todo/Log_function_to_enumerate_all_recent_git-annex_changes.mdwn
@@ -3,3 +3,5 @@ It would be great to have something to call in post-update-annex which would giv
This could be `git annex log --all --max-count=1` or somesuch.
This capability could alternatively be provided with a new post-transfer hook, called for every file.
+
+> [[done]] --[[Joey]]
diff --git a/doc/todo/Log_function_to_enumerate_all_recent_git-annex_changes/comment_2_18d1c7d8f4f0214c4d89119e9efb9b4a._comment b/doc/todo/Log_function_to_enumerate_all_recent_git-annex_changes/comment_2_18d1c7d8f4f0214c4d89119e9efb9b4a._comment
new file mode 100644
index 000000000..b22b9ed1b
--- /dev/null
+++ b/doc/todo/Log_function_to_enumerate_all_recent_git-annex_changes/comment_2_18d1c7d8f4f0214c4d89119e9efb9b4a._comment
@@ -0,0 +1,16 @@
+[[!comment format=mdwn
+ username="joey"
+ subject="""comment 2"""
+ date="2016-07-17T19:09:41Z"
+ content="""
+Implelemented `git annex log --all`. It turned out to fit really well
+to add the functionality there.
+
+You can use --max-count, or even --since to limit the log
+that's displayed.
+
+The output streams, so you could just remember the first line you saw when
+running it before, and close the pipe when the subsequent run outputs that
+line. (Although this method may skip over changes that got merged in from
+another repository.)
+"""]]