diff --git a/README b/README new file mode 100644 index 0000000..b35885a --- /dev/null +++ b/README @@ -0,0 +1,25 @@ +Global setup: + Set up git + git config --global user.name "Your Name" + git config --global user.email wei2009.li@gmail.com + +Next steps: + mkdir 3kfb + cd 3kfb + git init + touch README + git add README + git commit -m 'first commit' + git remote add origin git@github.com:wei2009/3kfb.git + git push -u origin master + +Existing Git Repo? + cd existing_git_repo + git remote add origin git@github.com:wei2009/3kfb.git + git push -u origin master + +Importing a Subversion Repo? + Check out the guide for step by step instructions. + +When you're done: + Continue \ No newline at end of file