aboutsummaryrefslogtreecommitdiffhomepage
path: root/gbp/git/repository.py
Commit message (Collapse)AuthorAge
* GitRepository.create(): use GitArgsGuido Günther2012-03-19
| | | | Git-Dch: Ignore
* GitModifier: add __getitem__ and keys()Guido Günther2012-03-15
| | | | so it can be used as dictonary
* GitRepository.merge: add edit optionGuido Günther2012-02-26
| | | | | | defaulting to False Closes: #659239
* GitRepsitory.merge: update apidoc and switch to GitArgsGuido Günther2012-02-26
| | | | Git-Dch: Ignore
* copy_from: remove, not used anymoreGuido Günther2012-02-20
|
* GitRepository: Use _git_inout() in __init__()Guido Günther2012-01-31
| | | | to avoid misleading error message
* GitRepository: Allow empty input in _git_inout()Guido Günther2012-01-31
| | | | so it can replace _git_getoutput()
* GitRepository: rename to __git_inout to _git_inoutGuido Günther2012-01-31
| | | | for readability.
* GitRepository: Rename __git_getoutput to _git_getoutputGuido Günther2012-01-31
| | | | | and deprecate it since _git_inout is more flexible, allows to capture stderr and doesn't return a list of strings.
* GitRepository: allow to capture stderr in __git_inoutGuido Günther2012-01-31
| | | | stderr was always None.
* GitRepository: document archive()Guido Günther2012-01-30
|
* Remove comparison with True to make pychecker happyGuido Günther2012-01-23
|
* GitRepository: allow git.commit_dir to create new branchesMarkus Lehtonen2012-01-23
| | | | | commit_dir creates new orphan branch if the given branch is not found and create_missing_branch is allowed.
* GitRepository: add get_obj_type()Markus Lehtonen2012-01-21
| | | | get_obj_type() returns the type of a git repository object.
* GitRepository: Fix types in diff docstringGuido Günther2012-01-15
|
* GitRepository: add depth parameter to fetch()Markus Lehtonen2012-01-15
| | | | Allows deepening of shallow clones.
* GitRepository: fix documentation of fetch()Markus Lehtonen2012-01-15
|
* GitRepository: add diff()Markus Lehtonen2012-01-15
| | | | Diff two git repository objects (tag, commit, tree or blob).
* GitRepository: add rename_branch() methodMarkus Lehtonen2012-01-15
|
* GitRepository: don't explicitly set the tags optionGuido Günther2012-01-13
| | | | to avoid missing remotes on "git fetch".
* GitRepository: Allow to explicitly fetch tagsGuido Günther2012-01-12
|
* GitRepository.branch_contains: fix misplaced remote parameterGuido Günther2012-01-10
|
* GitRepository: Add branch_contains()Guido Günther2012-01-10
| | | | to check if a branch contains a specific commit
* GitRepository: add verify_tag()Guido Günther2012-01-10
|
* GitRepository: add push() and push_tag()Guido Günther2012-01-10
|
* GitRepository: use isinstance(basestring) to check for string typesGuido Günther2012-01-08
|
* GitRepository: Add testcases for cornercasesGuido Günther2011-12-29
| | | | | | and small functions Git-Dch: Ignore
* GitRepository: more consistent exception syntaxGuido Günther2011-12-29
|
* Move _build_legacty_tag from GitRepository to to DebianGitRepositoryGuido Günther2011-12-28
| | | | | | and add doctest. Git-Dch: Ignore
* GitRepository: Use GitArgs in get_commitsGuido Günther2011-12-27
|
* GitRepository: Add num option to git_commitsGuido Günther2011-12-27
| | | | | to limit number of returned commits and fix path option to also accept a list of paths instead of a string.
* gbp.git.repository: add edit option to commit_stagedGuido Günther2011-12-26
| | | | to allow editing the commit message.
* Move GitRepository into separate submoduleGuido Günther2011-12-16