Skip to content
Snippets Groups Projects
Commit 336c031a0484 authored by David M. Carr's avatar David M. Carr
Browse files

tests: remove piping of command git init from test-subrepos

This change was already applied to all the other tests.
parent a6989fabe86d
No related branches found
No related tags found
No related merge requests found
......@@ -35,9 +35,8 @@
$ mkdir gitsubrepo
$ cd gitsubrepo
$ git init | python -c "import sys; print sys.stdin.read().replace('$(dirname $(pwd))/', '')"
Initialized empty Git repository in gitsubrepo/.git/
$ git init
Initialized empty Git repository in $TESTTMP/gitsubrepo/.git/
$ echo beta > beta
$ git add beta
$ gitcommit -m 'add beta'
......@@ -45,9 +44,8 @@
$ mkdir gitrepo1
$ cd gitrepo1
$ git init | python -c "import sys; print sys.stdin.read().replace('$(dirname $(pwd))/', '')"
Initialized empty Git repository in gitrepo1/.git/
$ git init
Initialized empty Git repository in $TESTTMP/gitrepo1/.git/
$ echo alpha > alpha
$ git add alpha
$ gitcommit -m 'add alpha'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment