Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save infernalheaven/627aa949c322584a00cf9c4e99585346 to your computer and use it in GitHub Desktop.
Save infernalheaven/627aa949c322584a00cf9c4e99585346 to your computer and use it in GitHub Desktop.
Git: Setting up a Remote Repository and Doing Initial Push

Setup remote repository:

ssh git@example.com
mkdir my_project.git
cd my_project.git
git init --bare

On local machine:

cd my_project
git init
git add *
git commit -m "Initial commit"
git remote add origin example.com:my_project.git
git push -u origin master
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment