diff options
author | Joey Hess <joey@kitenet.net> | 2011-01-04 17:45:27 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-01-04 17:45:27 -0400 |
commit | f1b747e6d9fae2b365f65fd43c6295da503218bd (patch) | |
tree | 1400863ef9a3f2bb8964e1b3f23b3bc2fdd12c8b /Remotes.hs | |
parent | a857e1f4ee247cae0cf0ce6696a9015460d117de (diff) |
bugfix: Running `move --to` with a remote whose UUID was not yet known
* bugfix: Running `move --to` with a remote whose UUID was not yet known
could result in git-annex not recording on the local side where the
file was moved to. This could not result in data loss, or even a
significant problem, since the remote *did* record that it had the file.
* Also, add a general guard to detect attempts to record information
about repositories with missing UUIDs.
Diffstat (limited to 'Remotes.hs')
-rw-r--r-- | Remotes.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remotes.hs b/Remotes.hs index 17d1bd0b0..da5b3e622 100644 --- a/Remotes.hs +++ b/Remotes.hs @@ -7,8 +7,8 @@ module Remotes ( list, + readConfigs, keyPossibilities, - tryGitConfigRead, inAnnex, same, commandLineRemote, |