mirror of
https://github.com/git/git
synced 2024-10-31 01:43:41 +00:00
6 lines
112 B
Text
6 lines
112 B
Text
|
while test $i -lt $((num - 5))
|
||
|
do
|
||
|
git notes add -m "notes for commit$i" HEAD~$i || return 1
|
||
|
i=$((i + 1))
|
||
|
done
|