diff options
author | Guido Günther <agx@sigxcpu.org> | 2008-02-14 17:31:03 +0100 |
---|---|---|
committer | Guido Guenther <agx@sigxcpu.org> | 2008-02-14 17:31:03 +0100 |
commit | 8051c7cf981b1115714de9930ee5560ed0ad7917 (patch) | |
tree | fcb490ff17b461163954715634533e178ac70141 /gbp | |
parent | 72154ec8d29ca0e18981e6a36e393ca2359b51f1 (diff) | |
download | git-buildpackage-8051c7cf981b1115714de9930ee5560ed0ad7917.tar.gz git-buildpackage-8051c7cf981b1115714de9930ee5560ed0ad7917.tar.bz2 git-buildpackage-8051c7cf981b1115714de9930ee5560ed0ad7917.zip |
don't use the deprecated git-* command versions
Diffstat (limited to 'gbp')
-rw-r--r-- | gbp/command_wrappers.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gbp/command_wrappers.py b/gbp/command_wrappers.py index f025dfeb..9fdc9198 100644 --- a/gbp/command_wrappers.py +++ b/gbp/command_wrappers.py @@ -117,25 +117,25 @@ class DpkgSourceExtract(Command): class GitCommand(Command): "Mother/Father of all git commands" def __init__(self, cmd, args=[]): - Command.__init__(self, 'git-'+cmd, args) + Command.__init__(self, 'git', [cmd] + args) class GitInitDB(GitCommand): - """Wrap git-init-db""" + """Wrap git init-db""" def __init__(self): GitCommand.__init__(self, 'init-db') self.run_error = "Couldn't init git repository" class GitShowBranch(GitCommand): - """Wrap git-show-branch""" + """Wrap git show-branch""" def __init__(self): GitCommand.__init__(self, 'branch') self.run_error = "Couldn't list branches" class GitBranch(GitCommand): - """Wrap git-branch""" + """Wrap git branch""" def __init__(self): GitCommand.__init__(self, 'branch') @@ -145,7 +145,7 @@ class GitBranch(GitCommand): class GitCheckoutBranch(GitCommand): - """Wrap git-checkout in order tos switch to a certain branch""" + """Wrap git checkout in order tos switch to a certain branch""" def __init__(self, branch): GitCommand.__init__(self, 'checkout', [branch]) self.branch = branch @@ -153,14 +153,14 @@ class GitCheckoutBranch(GitCommand): class GitPull(GitCommand): - """Wrap git-pull""" + """Wrap git pull""" def __init__(self, repo, branch): GitCommand.__init__(self, 'pull', [repo, branch]) self.run_error = "Couldn't pull %s to %s" % (branch, repo) class GitTag(GitCommand): - """Wrap git-tag""" + """Wrap git tag""" def __init__(self, sign_tag=False, keyid=None): GitCommand.__init__(self,'tag') self.sign_tag = sign_tag @@ -179,21 +179,21 @@ class GitTag(GitCommand): class GitAdd(GitCommand): - """Wrap git-add to add new files""" + """Wrap git add to add new files""" def __init__(self): GitCommand.__init__(self, 'add') self.run_error = "Couldn't add files" class GitRm(GitCommand): - """Wrap git-rm to remove files""" + """Wrap git rm to remove files""" def __init__(self): GitCommand.__init__(self, 'rm') self.run_error = "Couldn't remove files" class GitCommitAll(GitCommand): - """Wrap git-commit to commit all changes""" + """Wrap git commit to commit all changes""" def __init__(self, verbose=False): args = ['-a'] + [ ['-q'], [] ][verbose] GitCommand.__init__(self, cmd='commit', args=args) |