summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2016-04-09 14:18:17 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2016-04-09 14:18:17 -0400
commit35ffe77794eaabf2e99b28dbc30499f7c6af8d62 (patch)
tree95ccdf1c058694b757199c0194c4d6105047eaba
parent8fd4c4e849c43ff000d93e32f6aaa78be906f6ce (diff)
parent2534acc0988c8fe434a4565b3c8dd178695aa0cc (diff)
Merge branch 'master' of ssh://git-annex.branchable.com
-rw-r--r--doc/bugs/sync_on_a_repository_on_removable_media_should_not_leave_ssh_conns_open.mdwn1
1 files changed, 1 insertions, 0 deletions
diff --git a/doc/bugs/sync_on_a_repository_on_removable_media_should_not_leave_ssh_conns_open.mdwn b/doc/bugs/sync_on_a_repository_on_removable_media_should_not_leave_ssh_conns_open.mdwn
new file mode 100644
index 000000000..b2be4426d
--- /dev/null
+++ b/doc/bugs/sync_on_a_repository_on_removable_media_should_not_leave_ssh_conns_open.mdwn
@@ -0,0 +1 @@
+I have a client, non-bare, direct mode repository on a USB key. I use this to work on my files on Windows terminals at work. When I return to my own (Debian) workstation at home, I mount the drive, `cd /media/swhitton/SPWHITTON/annex && git annex sync --content`. This sync the contents of the key with both my workstation's `/home` and a remote VPS over SSH. When the sync is complete, Thunar can't unmount the key because git annex leaves ssh connections to my VPS open, with the working directory inside `/media/swhitton/SPWHITTON/annex`. So I have to run `pkill ssh`. It would be great if `git annex sync` could detect that a non-bare repository is on removable media, and not leave SSH connections open when it's finished the sync. Thanks! --spwhitton