summaryrefslogtreecommitdiff
path: root/doc/todo/wishlist__58___allow_re-adding_without_generating_log_entry.mdwn
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-03-12 12:57:18 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-03-12 12:57:18 -0400
commitca10c06819aacc50d4423836ce51fc4486803789 (patch)
treee96072aef36f12d28d715fd4b7396d3fea4eef4c /doc/todo/wishlist__58___allow_re-adding_without_generating_log_entry.mdwn
parent024dd384140b25f69defd762e41fd5e4af4f3567 (diff)
rename files containing :
This is mostly to let the repo check out on windows w/o using cygwin's git. But, bash completion is also crap with : , so ..
Diffstat (limited to 'doc/todo/wishlist__58___allow_re-adding_without_generating_log_entry.mdwn')
-rw-r--r--doc/todo/wishlist__58___allow_re-adding_without_generating_log_entry.mdwn11
1 files changed, 11 insertions, 0 deletions
diff --git a/doc/todo/wishlist__58___allow_re-adding_without_generating_log_entry.mdwn b/doc/todo/wishlist__58___allow_re-adding_without_generating_log_entry.mdwn
new file mode 100644
index 000000000..258b82f6a
--- /dev/null
+++ b/doc/todo/wishlist__58___allow_re-adding_without_generating_log_entry.mdwn
@@ -0,0 +1,11 @@
+I keep a database file in git-annex so it stays synced across several machines. My wrapper when accessing it is basically
+
+ git annex sync --content
+ git annex unlock $database
+ [access database]
+ git annex add $database
+ git annex sync --content
+
+This works fine except it creates an entry in the log for the database file even if that stays unchanged. I would like an option that just returns to the state before `git annex unlock` if the file has not been changed. Maybe `git annex add --restore-unchanged`?
+
+> [[done]] --[[Joey]]