Lines Matching full:git
36 <SELECTION> Any number of Git Revision Selections. (requires git v2.19)
37 https://git-scm.com/book/en/v2/Git-Tools-Revision-Selection
53 (requires git v2.19)
57 HEAD~1. (requires git v2.19)
62 (requires git v2.19)
66 (requires git v2.19)
69 HEAD of tag1. (requires git v2.19)
93 read -r MAJOR MINOR < <(git --version | awk -F '[. ]' '{print $3, $4}')
98 # parse the argument into a git object or list of git objects
99 object="$(git rev-parse "${arg}")" || continue
101 if git cat-file -e "${object}" 2>/dev/null; then
105 commits="$(echo "${object}" | git rev-list --stdin)"