Skip to content

Instantly share code, notes, and snippets.

@DAB0mB
Last active March 18, 2020 09:30
Show Gist options
  • Save DAB0mB/d5e4ebe1d3ce5503b5846bf2cb7ab997 to your computer and use it in GitHub Desktop.
Save DAB0mB/d5e4ebe1d3ce5503b5846bf2cb7ab997 to your computer and use it in GitHub Desktop.
git_squence_editor.sh
git_sequence_editor () {
if test -z "$GIT_SEQUENCE_EDITOR"
then
GIT_SEQUENCE_EDITOR="$(git config sequence.editor)"
if [ -z "$GIT_SEQUENCE_EDITOR" ]
then
GIT_SEQUENCE_EDITOR="$(git var GIT_EDITOR)" || return $?
fi
fi
eval "$GIT_SEQUENCE_EDITOR" '"$@"'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment