From 2336218982d4d6ba6ab758ecd4607f5c7c90ffec Mon Sep 17 00:00:00 2001 From: Murali Nandigama Date: Tue, 6 Apr 2010 22:08:41 -0700 Subject: [PATCH] second commit --- README | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/README b/README index e69de29..948565a 100644 --- a/README +++ b/README @@ -0,0 +1,37 @@ + +Global setup: + + Download and install Git + git config --global user.name "Your Name" + git config --global user.email murali.nandigama@gmail.com + + +Next steps: + + mkdir topfails-from-tinderbox + cd topfails-from-tinderbox + git init + touch README + git add README + git commit -m 'first commit' + git remote add origin git@github.com:nandigama/topfails-from-tinderbox.git + git push origin master + + +Existing Git Repo? + + cd existing_git_repo + git remote add origin git@github.com:nandigama/topfails-from-tinderbox.git + git push origin master + + +Importing a Subversion Repo? + + Click here + + +When you're done: + + Continue + +