diff options
author | Joey Hess <joey@kitenet.net> | 2012-10-03 17:04:52 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-10-03 17:04:52 -0400 |
commit | a08863d8b8613b067766d0dca33c1f0c651d498d (patch) | |
tree | e7c9a5a6007428a5ecf1393a5df71f2a574c2c76 /GitAnnex.hs | |
parent | 3bb9a92952f0da499315c897e3489fc02188618c (diff) |
vicfg: New command, allows editing (or simply viewing) most of the repository configuration settings stored in the git-annex branch.
Incomplete; I need to finish parsing and saving. This will also be used
for editing transfer control expresssions.
Removed the group display from the status output, I didn't really
like that format, and vicfg can be used to see as well as edit rempository
group membership.
Diffstat (limited to 'GitAnnex.hs')
-rw-r--r-- | GitAnnex.hs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/GitAnnex.hs b/GitAnnex.hs index 9b84f5c46..be5af113d 100644 --- a/GitAnnex.hs +++ b/GitAnnex.hs @@ -57,6 +57,7 @@ import qualified Command.Semitrust import qualified Command.Dead import qualified Command.Group import qualified Command.Ungroup +import qualified Command.Vicfg import qualified Command.Sync import qualified Command.AddUrl import qualified Command.Import @@ -96,6 +97,7 @@ cmds = concat , Command.Dead.def , Command.Group.def , Command.Ungroup.def + , Command.Vicfg.def , Command.FromKey.def , Command.DropKey.def , Command.TransferKey.def |