/snap/gh/502/usr/share/doc/git/contrib/examples
NameSizeModeActions
builtin-fetch--tool.c130560644editdlrm
git-am.sh243780644editdlrm
git-checkout.sh76210644editdlrm
git-clean.sh22610644editdlrm
git-clone.sh127110644editdlrm
git-commit.sh143920644editdlrm
git-difftool.perl127580644editdlrm
git-fetch.sh91150644editdlrm
git-gc.sh5940644editdlrm
git-log.sh3720644editdlrm
git-ls-remote.sh25460644editdlrm
git-merge-ours.sh3380644editdlrm
git-merge.sh144320644editdlrm
git-notes.sh27170644editdlrm
git-pull.sh104950644editdlrm
git-remote.perl103880644editdlrm
git-repack.sh49950644editdlrm
git-rerere.perl61950644editdlrm
git-reset.sh23020644editdlrm
git-resolve.sh27210644editdlrm
git-revert.sh46970644editdlrm
git-svnimport.perl249710644editdlrm
git-svnimport.txt53910644editdlrm
git-tag.sh40280644editdlrm
git-verify-tag.sh7490644editdlrm
git-whatchanged.sh9240644editdlrm
README1670644editdlrm
Edit: /snap/gh/502/usr/share/doc/git/contrib/examples/git-log.sh (372B)
#!/bin/sh # # Copyright (c) 2005 Linus Torvalds # USAGE='[--max-count=] [..] [--pretty=] [git-rev-list options]' SUBDIRECTORY_OK='Yes' . git-sh-setup revs=$(git-rev-parse --revs-only --no-flags --default HEAD "$@") || exit [ "$revs" ] || { die "No HEAD ref" } git-rev-list --pretty $(git-rev-parse --default HEAD "$@") | LESS=-S ${PAGER:-less}