diff options
Diffstat (limited to 'rfc.sh')
-rwxr-xr-x | rfc.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -31,9 +31,9 @@ function is_num() function rebase_changes() { - git fetch --all; + git fetch; - EDITOR=$0 git rebase -i origin/$branch; + GIT_EDITOR=$0 git rebase -i origin/$branch; } |