From 1aa02e20811e345ec8490f4b65e9007fc9dd2002 Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Fri, 15 May 2015 11:33:38 -0700 Subject: [PATCH] tweak doc on updating visual tests [skip ci] --- docs/contributing.markdown | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/contributing.markdown b/docs/contributing.markdown index e899c2ad7..e7f327977 100644 --- a/docs/contributing.markdown +++ b/docs/contributing.markdown @@ -18,8 +18,6 @@ Developers with commit access can update test data like: git remote set-url origin git@github.com:mapnik/test-data git commit -a -m "update test data" git push origin HEAD:master - cd ../../ - git commit test/data -m "update test-data submodule" And the visual test data can up updated like: @@ -27,6 +25,7 @@ And the visual test data can up updated like: git remote set-url origin git@github.com:mapnik/test-data-visual git add styles/* images/* git commit -a -m "add more visual tests" + git push origin HEAD:master After updating the test data you can then do: @@ -35,7 +34,7 @@ After updating the test data you can then do: # the submodule should be marked dirty git status # now commit the changes to the submodule - git commit -a -m "update visual tests and data" + git commit test/data test/data-visual -m "update visual tests and data" ## Community