Home > our_first_repo

our_first_repo

Our_first_repo is a project mainly written in ..., it's free.

Global setup:

Set up git git config --global user.name "Your Name" git config --global user.email [email protected]

Next steps:

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

Existing Git Repo?

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

Importing a Subversion Repo?

Click here

When you're done:

Continue

Previous:shared