Changes

Linux Commandline Stuff

2 bytes removed, 15:23, 4 October 2012
add remote git repository
*create empty local repository
<codepre>
cd my_project
git init
git remote add origin git@example.com:my_project.git
git push -u origin master
</codepre>
*adding remote repository and pushing to it: