diff options
author | Venky Shankar <venky@gluster.com> | 2011-08-04 14:06:08 +0530 |
---|---|---|
committer | Anand Avati <avati@gluster.com> | 2011-08-04 01:54:22 -0700 |
commit | ebeedba9d76e51f4ddeacfbbf335e3eab6272435 (patch) | |
tree | dcd65d78c2c4c5070b5d6a6ef56c984a5f177ee6 | |
parent | 967199adb1d73138158b5ed0a3b818b3adf66cac (diff) |
use GIT_EDITOR env variable instead of EDITOR
Change-Id: I90be06e1051ed5005d10e4ca248029ef776d0224
BUG: 3326
Reviewed-on: http://review.gluster.com/159
Tested-by: Gluster Build System <jenkins@build.gluster.com>
Reviewed-by: Anand Avati <avati@gluster.com>
-rwxr-xr-x | rfc.sh | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -33,7 +33,7 @@ function rebase_changes() { git fetch --all; - EDITOR=$0 git rebase -i origin/$branch; + GIT_EDITOR=$0 git rebase -i origin/$branch; } |