summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2008-11-19Remove dependency on GitPythonOwen W. Taylor
Replace usage of random low-level parts of GitPython with a simple convenience functionality similar to that offered by git.cmd. For example: git.commit(file="-", amend=True, _input=input) Include special options _input/_quiet/_interactive to allow removing several cases where subprocess.Popen() was used directly and improve output on git command failure. Also, use commit.subject rather than commit.message to be consistent with standard Git terminology.
2008-11-18Don't include the URL in the attachment commentOwen W. Taylor
Strip out the URL we add with -u when using the body of the commit as the comment for an attachmnet; it's completely redundant to have an URL pointing back to the bug page itself.
2008-11-18Try to catch failure when attaching a patchOwen W. Taylor
If the response to attaching a patch doesn't have "Changes Submitted" as the, assume the attachment failed and dump out an error message and the response body.
2008-11-17Add TODO item: For attach -u don't include URL in the commentOwen W. Taylor
2008-11-17Fix severity in default config to 'normal'Owen W. Taylor
The default default severity should be 'normal', not empty.
2008-11-17TODO additionsOwen W. Taylor
* Add item about dropping the usage of GitPython * Add a better suggestion for how to do Obsoletes
2008-11-16Add TODO item: Allow editing comment used for attachmentsOwen W. Taylor
2008-11-16Add add-url subcommand and -u/--add-url command line optionsOwen W. Taylor
git bz add-url: new subcommand to rewrite old commit messages to include a bug URL. git bz attach/file: -u/--add-url option rewrites commit messages as with 'add-url' before attaching patches to bugzilla. git bz apply: -u/--add-url option rewrites commit messages after applying patches to the current tree.
2008-11-16Add TODO item: more general patch applicationOwen W. Taylor
2008-11-16Fix a couple of minor problems introduced in cleanupOwen W. Taylor
Testing revealed a couple of invalid variable references from cleanups just before the initial import. Fix.
2008-11-16Add product/component to 'git file' examplesOwen W. Taylor
git-file examples were missing the mandatory product and component.
2008-11-16Initial importOwen W. Taylor