From 903162408f329205ff1f2b1131142547d73027ce Mon Sep 17 00:00:00 2001 From: Wes Garner Date: Thu, 19 Aug 2010 14:56:24 -0500 Subject: [PATCH] cmgerrit: remove from vendor, now merged into envsetup --- tools/cmgerrit | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100755 tools/cmgerrit diff --git a/tools/cmgerrit b/tools/cmgerrit deleted file mode 100755 index bc79d5a6..00000000 --- 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 -# 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 -