chiark
/
gitweb
/
~mdw
/
stgit
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Rudimentary support for multiple development branches
[stgit]
/
stgit
/
main.py
diff --git
a/stgit/main.py
b/stgit/main.py
index 0b19e63b149e32da885344e21b95881c2f5a0f2b..07bc7d4ac594febca51bb2a830f7aa882c58a1ed 100644
(file)
--- a/
stgit/main.py
+++ b/
stgit/main.py
@@
-30,6
+30,7
@@
from stgit.commands.common import *
# The commands
import stgit.commands.add
import stgit.commands.applied
# The commands
import stgit.commands.add
import stgit.commands.applied
+import stgit.commands.branch
import stgit.commands.delete
import stgit.commands.diff
import stgit.commands.clean
import stgit.commands.delete
import stgit.commands.diff
import stgit.commands.clean
@@
-63,6
+64,7
@@
import stgit.commands.unapplied
commands = {
'add': stgit.commands.add,
'applied': stgit.commands.applied,
commands = {
'add': stgit.commands.add,
'applied': stgit.commands.applied,
+ 'branch': stgit.commands.branch,
'delete': stgit.commands.delete,
'diff': stgit.commands.diff,
'clean': stgit.commands.clean,
'delete': stgit.commands.delete,
'diff': stgit.commands.diff,
'clean': stgit.commands.clean,