mirror of https://github.com/CGAL/cgal
Add a usage
This commit is contained in:
parent
6e06f20382
commit
0027fc7a4e
|
|
@ -3,7 +3,21 @@
|
||||||
zmodload zsh/stat
|
zmodload zsh/stat
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
git=git
|
if [ "x$1" = "x--help" -o "x$1" = "x-h" ]; then
|
||||||
|
cat <<EOF
|
||||||
|
Usage: $0
|
||||||
|
[HEAD] [BASE]
|
||||||
|
|
||||||
|
List the commits in the range BASE..HEAD, with --first-parent
|
||||||
|
and show for each the weight of the commit.
|
||||||
|
|
||||||
|
[HEAD] is the head of the branch you want to display.
|
||||||
|
Its default value is 'HEAD'.
|
||||||
|
|
||||||
|
[BASE] is the base of the range. Its default value is 'cgal/master'.
|
||||||
|
EOF
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
|
||||||
commit=${1:-HEAD}
|
commit=${1:-HEAD}
|
||||||
base=${2:-cgal/master}
|
base=${2:-cgal/master}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue