mirror of
https://github.com/git/git
synced 2024-10-31 01:43:41 +00:00
7 lines
187 B
Text
7 lines
187 B
Text
|
while test $i -lt $((num - 5))
|
||
|
do
|
||
|
# LINT: "|| return {n}" valid loop escape outside subshell; no "&&" needed
|
||
|
git notes add -m "notes for commit$i" HEAD~$i || return 1
|
||
|
i=$((i + 1))
|
||
|
done
|