Skip to content
Snippets Groups Projects
Commit 126ce540 authored by Tay Ray Chuan's avatar Tay Ray Chuan
Browse files

tests: specify --pretty format

If the user sets git config --global format.pretty, all hell breaks
loose. Specifying it prevents this.
parent 7ddb740a
No related branches found
No related tags found
No related merge requests found
......@@ -54,7 +54,7 @@
hg push git://localhost/gitrepo2
cd ../gitrepo2
git log
git log --pretty=medium
cd ..
kill `cat gitdaemon.pid`
......@@ -66,7 +66,7 @@
hg push git://localhost/gitrepo2
cd ../gitrepo2
git log
git log --pretty=medium
cd ..
kill `cat gitdaemon.pid`
......@@ -80,7 +80,7 @@
hg push git://localhost/gitrepo2
cd ../gitrepo2
git log
git log --pretty=medium
cd ..
kill `cat gitdaemon.pid`
......@@ -74,8 +74,8 @@
cd ..
cd gitrepo2
echo % git log in repo pushed from hg
git log master | sed 's/\.\.\.//g'
git log beta | sed 's/\.\.\.//g'
git log --pretty=medium master | sed 's/\.\.\.//g'
git log --pretty=medium beta | sed 's/\.\.\.//g'
cd ..
kill `cat gitdaemon.pid`
......@@ -77,7 +77,7 @@
hg push git://localhost/gitrepo2
cd ../gitrepo2
git log | sed s/\\.\\.\\.//g
git log --pretty=medium | sed s/\\.\\.\\.//g
cd ..
kill `cat gitdaemon.pid`
......@@ -71,7 +71,7 @@
hg push git://localhost/gitrepo2
cd ../gitrepo2
git log
git log --pretty=medium
cd ..
kill `cat gitdaemon.pid`
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