Separate the commands in stgit/commands/* files
authorCatalin Marinas <catalin.marinas@gmail.com>
Tue, 12 Jul 2005 22:02:06 +0000 (23:02 +0100)
committerCatalin Marinas <catalin.marinas@gmail.com>
Tue, 12 Jul 2005 22:02:06 +0000 (23:02 +0100)
commitfcee87cf868f18a3d684c3ba71232574f92c7b11
tree50d085b86846e8b944897d56db6c2b08205b7689
parent91bb107717858a45fdef292eb89c7548220c0f42
Separate the commands in stgit/commands/* files

The main.py file is getting bigger and bigger and it will soon become
unmaintenable. This patch creates separate files for each command.

Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
20 files changed:
stgit/commands/__init__.py [new file with mode: 0644]
stgit/commands/add.py [new file with mode: 0644]
stgit/commands/applied.py [new file with mode: 0644]
stgit/commands/common.py [new file with mode: 0644]
stgit/commands/delete.py [new file with mode: 0644]
stgit/commands/diff.py [new file with mode: 0644]
stgit/commands/export.py [new file with mode: 0644]
stgit/commands/files.py [new file with mode: 0644]
stgit/commands/init.py [new file with mode: 0644]
stgit/commands/new.py [new file with mode: 0644]
stgit/commands/pop.py [new file with mode: 0644]
stgit/commands/push.py [new file with mode: 0644]
stgit/commands/refresh.py [new file with mode: 0644]
stgit/commands/resolved.py [new file with mode: 0644]
stgit/commands/rm.py [new file with mode: 0644]
stgit/commands/series.py [new file with mode: 0644]
stgit/commands/status.py [new file with mode: 0644]
stgit/commands/top.py [new file with mode: 0644]
stgit/commands/unapplied.py [new file with mode: 0644]
stgit/main.py