X-Git-Url: http://git.vanrenterghem.biz/git.ikiwiki.info.git/blobdiff_plain/da395ac33cec337edcbaccd3c8631a948f029155..7c34df633d6dd0d16538b1911694351b604104ef:/t/manual/git_revert/Makefile diff --git a/t/manual/git_revert/Makefile b/t/manual/git_revert/Makefile index 9e2220d11..34db8c48a 100644 --- a/t/manual/git_revert/Makefile +++ b/t/manual/git_revert/Makefile @@ -9,15 +9,17 @@ all: mkdir -p git/doc/writable cd git && git init cp index.mdwn git/doc/index.mdwn + cp -a $(CURDIR)/../../../doc/wikiicons git/doc/ + cp -a $(CURDIR)/../../../doc/recentchanges.mdwn git/doc/ echo "This is the first test page" > git/doc/writable/one.mdwn echo "This is the second test page" > git/doc/writable/two.mdwn - cd git && git add doc && git commit -m 'Initial commit' + cd git && git add . && git commit -m 'Initial commit' $(ikiwiki) --setup ikiwiki.setup echo "This is the first test page, it was first" > git/doc/writable/one.mdwn - cd git && git add doc && git commit -m 'First web commit' + cd git && git add . && git commit -m 'First web commit' $(ikiwiki) --setup ikiwiki.setup echo "This is the second test page, it came second" > git/doc/writable/two.mdwn - cd git && git add doc && git commit -m 'Second web commit' + cd git && git add . && git commit -m 'Second web commit' $(ikiwiki) --setup ikiwiki.setup cd git && git mv doc/writable/one.mdwn doc/one.mdwn cd git && git mv doc/writable/two.mdwn two.mdwn