diff hgext/infinitepush/infinitepushcommands.py @ 37188:de4c2f3af97f

infinitepush: remove backupcommands.py This file contains command pushbackup and pullbackup which are used to store things to infinitepush. This is an advanced functionality which we don't require as of now. Also this uses shareutil.py from fb-hgext/ which is not there in core. Therefore this patch deletes the file and the config option which belongs to the backup thing. If we need this functionality in future, we can always move this file back. Differential Revision: https://phab.mercurial-scm.org/D2097
author Pulkit Goyal <7895pulkit@gmail.com>
date Sat, 03 Feb 2018 17:54:55 +0530
parents 03ff17a4bf53
children
line wrap: on
line diff
--- a/hgext/infinitepush/infinitepushcommands.py	Fri Feb 09 13:39:15 2018 +0530
+++ b/hgext/infinitepush/infinitepushcommands.py	Sat Feb 03 17:54:55 2018 +0530
@@ -30,13 +30,12 @@
 )
 
 from . import (
-    backupcommands,
     common,
 )
 
 downloadbundle = common.downloadbundle
 
-cmdtable = backupcommands.cmdtable
+cmdtable = {}
 command = registrar.command(cmdtable)
 
 @command('debugfillinfinitepushmetadata',