[PATCH] clean up git script

2005-08-13 Thread Amos Waterland
Linux box. Presents a standard usage statement, and pretty prints the available commands in a form that does not scroll off small terminals. Signed-off-by: Amos Waterland <[EMAIL PROTECTED]> --- git | 27 +-- 1 files changed, 13 insertions(+), 14 deletions(-) diff

[PATCH] Add git-branches-script

2005-08-15 Thread Amos Waterland
lable branches with a star in front of the one you are on: $ cd linux-2.6/ $ git checkout -b ppc64-cleanups $ git checkout -b ppc64-new-devel $ git checkout -b ppc64-all-merge $ git branches master * ppc64-all-merge ppc64-cleanups ppc64-new-devel Signed-off-by: Amos Waterland &l

[PATCH] Make git pull default to origin

2005-08-19 Thread Amos Waterland
Currently, typing `git pull' without a third argument will result in an error message. Make it default to orgin, which is what the user typically means. Signed-off-by: Amos Waterland <[EMAIL PROTECTED]> --- git-pull-script | 11 +-- 1 files changed, 9 insertions(+),

[PATCH] Do not create bogus branch from flag to git branch

2005-09-07 Thread Amos Waterland
If you run `git branch --help', you will unexpectedly have created a new branch named "--help". This simple patch adds logic and a usage statement to catch this and similar problems, and adds a testcase for it. Signed-off-by: Amos Waterland <[EMAIL PROTECTED]> --- git