Skip to content

Instantly share code, notes, and snippets.

@lakemove
Created March 21, 2013 03:19
Show Gist options
  • Save lakemove/5210445 to your computer and use it in GitHub Desktop.
Save lakemove/5210445 to your computer and use it in GitHub Desktop.
self-executable shell commandline shamelessly copied from [jgit|http://www.eclipse.org/jgit/download/]
cmd=
for a in "$@"
do
case "$a" in
-*) continue ;;
*) cmd=$a; break; ;;
esac
done
use_pager=
case "$cmd" in
blame) use_pager=1 ;;
diff) use_pager=1 ;;
log) use_pager=1 ;;
esac
this_script=`which "$0" 2>/dev/null`
[ $? -gt 0 -a -f "$0" ] && this_script="$0"
cp=$this_script
if [ -n "$JGIT_CLASSPATH" ]
then
cp="$cp:$JGIT_CLASSPATH"
fi
# Cleanup paths for Cygwin.
#
case "`uname`" in
CYGWIN*)
cp=`cygpath --windows --mixed --path "$cp"`
;;
Darwin)
if [ -e /System/Library/Frameworks/JavaVM.framework ]
then
java_args='
-Dcom.apple.mrj.application.apple.menu.about.name=JGit
-Dcom.apple.mrj.application.growbox.intrudes=false
-Dapple.laf.useScreenMenuBar=true
-Xdock:name=JGit
-Dfile.encoding=UTF-8
'
fi
;;
esac
CLASSPATH="$cp"
export CLASSPATH
java=java
if [ -n "$JAVA_HOME" ]
then
java="$JAVA_HOME/bin/java"
fi
if [ -n "$use_pager" ]
then
use_pager=${GIT_PAGER:-${PAGER:-less}}
[ cat = "$use_pager" ] && use_pager=
fi
if [ -n "$use_pager" ]
then
LESS=${LESS:-FSRX}
export LESS
"$java" $java_args org.eclipse.jgit.pgm.Main "$@" | $use_pager
exit
else
exec "$java" $java_args org.eclipse.jgit.pgm.Main "$@"
exit 1
fi
//jar content starts here......
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment