From 8c8d151b3edd893299caebcd76d425fce8413db0 Mon Sep 17 00:00:00 2001 From: bootstraponline Date: Sat, 16 Mar 2013 20:39:31 -0300 Subject: [PATCH] Update README.md --- README.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/README.md b/README.md index ac346576..5efaf8d9 100644 --- a/README.md +++ b/README.md @@ -594,3 +594,18 @@ your changes merged back into core is as follows: bundle install bundle exec rake test + +## WORK WITH TEST REPOS + +An example of how to add a test file to the bare repository lotr.git. + +```bash +$ mkdir tmp; cd tmp +$ git clone ../lotr.git/ . +Cloning into '.'... +done. +$ git log +$ echo "test" > test.md +$ git add . ; git commit -am "Add test" +$ git push ../lotr.git/ master +```