Show More
@@ -209,7 +209,7 b' def add(ui, repo, *args, **kwargs):' | |||||
209 |
|
209 | |||
210 | def am(ui, repo, *args, **kwargs): |
|
210 | def am(ui, repo, *args, **kwargs): | |
211 | cmdoptions = [] |
|
211 | cmdoptions = [] | |
212 |
|
|
212 | parseoptions(ui, cmdoptions, args) | |
213 | cmd = Command(b'import') |
|
213 | cmd = Command(b'import') | |
214 | ui.status(bytes(cmd), b"\n") |
|
214 | ui.status(bytes(cmd), b"\n") | |
215 |
|
215 | |||
@@ -1139,7 +1139,7 b' def svn(ui, repo, *args, **kwargs):' | |||||
1139 |
|
1139 | |||
1140 | def svndcommit(ui, repo, *args, **kwargs): |
|
1140 | def svndcommit(ui, repo, *args, **kwargs): | |
1141 | cmdoptions = [] |
|
1141 | cmdoptions = [] | |
1142 |
|
|
1142 | parseoptions(ui, cmdoptions, args) | |
1143 |
|
1143 | |||
1144 | cmd = Command(b'push') |
|
1144 | cmd = Command(b'push') | |
1145 |
|
1145 | |||
@@ -1148,7 +1148,7 b' def svndcommit(ui, repo, *args, **kwargs' | |||||
1148 |
|
1148 | |||
1149 | def svnfetch(ui, repo, *args, **kwargs): |
|
1149 | def svnfetch(ui, repo, *args, **kwargs): | |
1150 | cmdoptions = [] |
|
1150 | cmdoptions = [] | |
1151 |
|
|
1151 | parseoptions(ui, cmdoptions, args) | |
1152 |
|
1152 | |||
1153 | cmd = Command(b'pull') |
|
1153 | cmd = Command(b'pull') | |
1154 | cmd.append(b'default-push') |
|
1154 | cmd.append(b'default-push') | |
@@ -1173,7 +1173,7 b' def svnrebase(ui, repo, *args, **kwargs)' | |||||
1173 | cmdoptions = [ |
|
1173 | cmdoptions = [ | |
1174 | (b'l', b'local', None, b''), |
|
1174 | (b'l', b'local', None, b''), | |
1175 | ] |
|
1175 | ] | |
1176 |
|
|
1176 | parseoptions(ui, cmdoptions, args) | |
1177 |
|
1177 | |||
1178 | pullcmd = Command(b'pull') |
|
1178 | pullcmd = Command(b'pull') | |
1179 | pullcmd.append(b'default-push') |
|
1179 | pullcmd.append(b'default-push') |
General Comments 0
You need to be logged in to leave comments.
Login now