diff options
author | Joey Hess <joey@kitenet.net> | 2011-06-22 16:03:26 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-06-22 16:03:26 -0400 |
commit | e0bd9d43a21bae8193cb0a56be2246ee8cdafdaa (patch) | |
tree | d0c16f6ec00c42957f20998c70b34568b55f0fda /Command/Describe.hs | |
parent | 5c706d1ec48172f98e1826684ab380a69079b66a (diff) |
update for git-annex branch
stop changing gitattributes on init
create git-annex branch on init
ugly special case for init in a bare repository goes away, yay!
git annex init is also faster, at least in a large existing repo, as
it does not need to run the slow 'git add'
Diffstat (limited to 'Command/Describe.hs')
-rw-r--r-- | Command/Describe.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Command/Describe.hs b/Command/Describe.hs index 57f884e03..2ad3e01ee 100644 --- a/Command/Describe.hs +++ b/Command/Describe.hs @@ -11,7 +11,6 @@ import Command import qualified Remote import UUID import Messages -import qualified Command.Init command :: [Command] command = [repoCommand "describe" (paramPair paramRemote paramDesc) seek @@ -34,4 +33,4 @@ start ws = notBareRepo $ do perform :: UUID -> String -> CommandPerform perform u description = do describeUUID u description - next $ Command.Init.cleanup + next $ return True |