diff options
author | Joey Hess <joey@kitenet.net> | 2010-10-28 14:04:22 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-10-28 14:04:22 -0400 |
commit | ecfbc01ff8b55d4cbe02c02c604264a627e759bf (patch) | |
tree | f1c8dfbf0b17b64667f880b685919070229583c9 | |
parent | 5c2c652d7dd6346990143f10f9a7d520496cc871 (diff) |
Add --verbose
-rw-r--r-- | Commands.hs | 2 | ||||
-rw-r--r-- | debian/changelog | 1 | ||||
-rw-r--r-- | doc/git-annex.mdwn | 4 |
3 files changed, 7 insertions, 0 deletions
diff --git a/Commands.hs b/Commands.hs index a46b9fb16..ac17c34d1 100644 --- a/Commands.hs +++ b/Commands.hs @@ -116,6 +116,8 @@ options = [ "allow actions that may lose annexed data" , Option ['q'] ["quiet"] (NoArg (storebool "quiet" True)) "avoid verbose output" + , Option ['v'] ["verbose"] (NoArg (storebool "quiet" False)) + "allow verbose output" , Option ['b'] ["backend"] (ReqArg (storestring "backend") "NAME") "specify default key-value backend to use" , Option ['k'] ["key"] (ReqArg (storestring "key") "KEY") diff --git a/debian/changelog b/debian/changelog index ac1ed0ab4..c7297d1c3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ git-annex (0.03) UNRELEASED; urgency=low * Fix support for file:// remotes. + * Add --verbose -- Joey Hess <joeyh@debian.org> Thu, 28 Oct 2010 13:46:59 -0400 diff --git a/doc/git-annex.mdwn b/doc/git-annex.mdwn index 3c48e9dc3..47fbb3760 100644 --- a/doc/git-annex.mdwn +++ b/doc/git-annex.mdwn @@ -153,6 +153,10 @@ Many git-annex subcommands will stage changes for later `git commit` by you. Avoid the default verbose logging of what is done; only show errors and progress displays. +* --verbose + + Enable verbose logging. + * --backend=name Specify the default key-value backend to use, adding it to the front |