diff options
author | Joey Hess <joey@kitenet.net> | 2012-05-02 14:59:05 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-05-02 14:59:05 -0400 |
commit | 392931eca9191117ae5c9d479fabab1e8ecaf8df (patch) | |
tree | dcddce458b701d795c8b3ef7385ad955301c9ac0 /GitAnnex.hs | |
parent | 7d6b36dffbb11837a6fcfea3317b7d24ccbeeff7 (diff) |
addunused: New command, the opposite of dropunused, it relinks unused content into the git repository.
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 52886c308..0e707b186 100644 --- a/GitAnnex.hs +++ b/GitAnnex.hs @@ -37,6 +37,7 @@ import qualified Command.InitRemote import qualified Command.Fsck import qualified Command.Unused import qualified Command.DropUnused +import qualified Command.AddUnused import qualified Command.Unlock import qualified Command.Lock import qualified Command.PreCommit @@ -86,6 +87,7 @@ cmds = concat , Command.Fsck.def , Command.Unused.def , Command.DropUnused.def + , Command.AddUnused.def , Command.Find.def , Command.Whereis.def , Command.Log.def |