Welcome to mirror list, hosted at ThFree Co, Russian Federation.

return-loop.expect « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfc0549befe3ff36b5c725009f6aa0230eca29a4 (plain)
1
2
3
4
5
while test $i -lt $((num - 5))
do
	git notes add -m "notes for commit$i" HEAD~$i || return 1
	i=$((i + 1))
done