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

one-liner-for-loop.expect « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 51a3dc7c5448e2d52e13623eb4e080a04ab13b1f (plain)
1
2
3
4
5
6
7
8
9
git init dir-rename-and-content &&
(
	cd dir-rename-and-content &&
	test_write_lines 1 2 3 4 5 >foo &&
	mkdir olddir &&
	for i in a b c; do echo $i >olddir/$i; ?!LOOP?! done ?!AMP?!
	git add foo olddir &&
	git commit -m "original" &&
)