diff options
author | Wes Garner <wesgarner@gmail.com> | 2010-08-19 14:56:24 -0500 |
---|---|---|
committer | Wes Garner <wesgarner@gmail.com> | 2010-08-19 14:56:24 -0500 |
commit | 903162408f329205ff1f2b1131142547d73027ce (patch) | |
tree | 8e317733e40f4e1d28165b266784b61db5bb1f1e /tools | |
parent | 75c82dda5cc68807512c08eb99ab66f982a3216b (diff) | |
download | vendor_replicant-903162408f329205ff1f2b1131142547d73027ce.zip vendor_replicant-903162408f329205ff1f2b1131142547d73027ce.tar.gz vendor_replicant-903162408f329205ff1f2b1131142547d73027ce.tar.bz2 |
cmgerrit: remove from vendor, now merged into envsetup
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/cmgerrit | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tools/cmgerrit b/tools/cmgerrit deleted file mode 100755 index bc79d5a..0000000 --- a/tools/cmgerrit +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# -# Gerrit tool for easiness of submitting changes to CM repos -# Wes Garner -# Usage: cmgerrit <CM Gerrit username> <repo> <for/changes> <branch/change-id> -# Note: for = new submissions, changes = new patch set for current submission -# - -user=$1 -repo=$2 -mode=$3 -target=$4 - -if [ -z $user ] -then - echo "Type your CyanogenMod Gerrit username: " - read user - echo "What is the repository you are submitting to? (ex. android_vendor_cyanogen) " - read repo - echo "Is this a new change or a new patchset to a current change? (for = new, changes = patch set) " - read mode - echo "What is the branch (for a new change) OR change-id (for a current change) you are working with? " - read target -fi - -git push ssh://$user@review.cyanogenmod.com:29418/CyanogenMod/$repo HEAD:refs/$mode/$target - |