In order to set this up, clone this repository somewhere,
run the git submodule init
and then git submodule update
command, and add your clone to $PATH.
Push patches from git to bugzilla.
Create a new working directory based off an existing local git repository.
Find the hg commit corresponding to a git commit.
Usage: git push-to-hg [-t/--tip] PATH_TO_HG_REPO [GIT_REVS]
Push commits from git to a new qqueue in an hg repository. If GIT_REVS is
omitted, push the commits $(git merge-base HEAD origin/master)..HEAD
(i.e.
everything in the current branch that's not upstream).
If -t
or --tip
is specified, update the hg repository to its tip before
pushing. Otherwise, update the hg repository to the revision atop which the
git commits are based.
Usage: git push-to-try [-t/--tip] PATH_TO_HG_REPO TRYCHOOSER_PARAMS
Push the commits $(git merge-base HEAD origin/master)..HEAD
(i.e. everything
in the current branch that's not upstream) to try, by way of the given hg
repository.
TRYCHOOSER_PARAMS should be, e.g. -b do -p all -u all -t none
.
Outputs the last common revision of the current branch and origin/master.
(This command is a synonym for git merge-base HEAD origin/master
.)
An alias for git rebase -i $(git qparent)
. This lets you interactively
rebase your current branch without moving the commits to a new upstream base.
Open all the files modified in the specified rev range in your $EDITOR
. (If
no rev range is specified, open the files modified in your current branch.)
Like hg qapplied
, output the commits in this branch which are not in the
origin/master branch.
Format a patch from git format-patch
as an hg patch.
Output the name of the active git branch, but if there's no git repository below the cwd, output nothing. This is useful when you want to display the current branch name on the command line.
For example, I have in my ~/.bashrc:
function vcs-branchname() {
git_branch=`git branchname`
if [[ "$git_branch" != "" ]]; then
echo " ($git_branch)"
fi
}
PROMPT_COLOR="35m"
PROMPT_COMMAND='BRANCH_NAME=`vcs-branchname`'
PS1='\[\033[01;$PROMPT_COLOR\]\u@\h\[\033[00m\]:\[\033[01;$PROMPT_COLOR\]\w\[\033[00m\]$BRANCH_NAME\$ '
which makes my prompt look like
jlebar@hostname:~/current/path (name-of-git-branch)$
A pre-commit hook which checks for .orig files and trailing whitespace.
To install this hook, symlink it into your repository's .git/hooks
directory (with the name pre-commit).