diff options
author | Joey Hess <joey@kitenet.net> | 2012-01-06 15:40:04 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-01-06 15:40:07 -0400 |
commit | a3a9f87047d27306c27f4108ee58af3365f284af (patch) | |
tree | 26fbd58b758a0a3773f7df05d30a8c101d866e1b /Annex | |
parent | 1f8a1058c96bd4ee11fcb353f0ede1842d79ab6a (diff) |
log: New command that displays the location log for file, showing each repository they were added to and removed from.
This needs to run git log on the location log files to get at all past
versions of the file, which tends to be a bit slow.
It would be possible to make a version optimised for showing the location
logs for every key. That would only need to run git log once, so would be
faster, but it would need to process an enormous amount of data, so
would not speed up the individual file case.
In the future it would be nice to support log --format. log --json also
doesn't work right yet.
Diffstat (limited to 'Annex')
-rw-r--r-- | Annex/Branch.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Annex/Branch.hs b/Annex/Branch.hs index d3a81d8e5..8f07b7aa2 100644 --- a/Annex/Branch.hs +++ b/Annex/Branch.hs @@ -6,6 +6,7 @@ -} module Annex.Branch ( + fullname, name, hasOrigin, hasSibling, |