Skip to content

Latest commit

 

History

History
36 lines (21 loc) · 692 Bytes

README.markdown

File metadata and controls

36 lines (21 loc) · 692 Bytes

Global setup:

Set up git: http://help.github.com/set-up-git-redirect
git config --global user.name "Full Name"
git config --global user.email [email protected]

Next steps:

mkdir spoj
cd spoj
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin [email protected]:andersonvom/spoj.git
git push -u origin master

Existing Git Repo?

cd existing_git_repo
git remote add origin [email protected]:andersonvom/spoj.git
git push -u origin master

Importing a Subversion Repo?

Click here: https:/andersonvom/spoj/imports/new

When you're done:

Continue: https:/andersonvom/spoj