summaryrefslogtreecommitdiff
path: root/doc/bugs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2011-04-04 13:35:18 -0400
committerGravatar Joey Hess <joey@kitenet.net>2011-04-04 13:35:18 -0400
commit88b0f2c9987fa0fd8708a4b7c4080a26c261615c (patch)
tree52a7d56ab8c732e579cf3da4e390c33b7c587c57 /doc/bugs
parent3e0119a89f8968128f5436a68171279e5c6e2295 (diff)
parent8527643324102de36bb43785a14cf0a5020004e7 (diff)
Merge remote-tracking branch 'branchable/master'
Diffstat (limited to 'doc/bugs')
-rw-r--r--doc/bugs/fat_support/comment_1_04bcc4795d431e8cb32293aab29bbfe2._comment12
-rw-r--r--doc/bugs/git-annex_directory_hashing_problems_on_osx/comment_19_ff555c271637af065203ca99c9eeaf89._comment8
-rw-r--r--doc/bugs/minor_bug:_errors_are_not_verbose_enough.mdwn24
3 files changed, 44 insertions, 0 deletions
diff --git a/doc/bugs/fat_support/comment_1_04bcc4795d431e8cb32293aab29bbfe2._comment b/doc/bugs/fat_support/comment_1_04bcc4795d431e8cb32293aab29bbfe2._comment
new file mode 100644
index 000000000..510e44984
--- /dev/null
+++ b/doc/bugs/fat_support/comment_1_04bcc4795d431e8cb32293aab29bbfe2._comment
@@ -0,0 +1,12 @@
+[[!comment format=mdwn
+ username="fmarier"
+ ip="121.73.248.43"
+ subject="Exporting to a FAT filesystem?"
+ date="2011-04-04T07:40:41Z"
+ content="""
+I'm using git-annex to keep my music in sync between all of my different machines. What I'd love to be able to do is to also keep it in sync with my iRiver player. Unfortunately, the firmware, Rockbox, doesn't support ext3, so I'm stuck with a FAT filesystem.
+
+I can see how the design of git-annex makes it rather difficult to get rid of the symlinks, so how about taking a different approach: something like a \"git annex export DEST\" which would take a destination (not a git remote) and rsync the content over to there as regular files.
+
+Maybe \"git annex sync DEST\" or \"git annex rsync DEST\" would be better names if we want to convey the idea that the destination will be made to look like the source repo, including performing the necessary deletions.
+"""]]
diff --git a/doc/bugs/git-annex_directory_hashing_problems_on_osx/comment_19_ff555c271637af065203ca99c9eeaf89._comment b/doc/bugs/git-annex_directory_hashing_problems_on_osx/comment_19_ff555c271637af065203ca99c9eeaf89._comment
new file mode 100644
index 000000000..2676b3589
--- /dev/null
+++ b/doc/bugs/git-annex_directory_hashing_problems_on_osx/comment_19_ff555c271637af065203ca99c9eeaf89._comment
@@ -0,0 +1,8 @@
+[[!comment format=mdwn
+ username="http://joey.kitenet.net/"
+ nickname="joey"
+ subject="comment 19"
+ date="2011-04-03T19:53:44Z"
+ content="""
+Git does not need to be upgraded. Git-annex needs to be upgraded to git rev 616e6f8a840ef4d99632d12a2e7ea15c3cfb1805 or newer, on all machines.
+"""]]
diff --git a/doc/bugs/minor_bug:_errors_are_not_verbose_enough.mdwn b/doc/bugs/minor_bug:_errors_are_not_verbose_enough.mdwn
new file mode 100644
index 000000000..8def2e8c3
--- /dev/null
+++ b/doc/bugs/minor_bug:_errors_are_not_verbose_enough.mdwn
@@ -0,0 +1,24 @@
+Current:
+
+ % git annex status
+ git-annex: unknown command
+
+Better:
+
+ % git annex status
+ git-annex: status: unknown command
+
+Current:
+
+ % git annex fsck
+ [...]
+ git-annex: 18 failed
+
+Better:
+
+ % git annex fsck
+ [...]
+ git-annex: fsck: 18 failed
+
+
+etc pp.