Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inopinatus/4e936864ab3d5b79b8f050bce39b3667 to your computer and use it in GitHub Desktop.
Save inopinatus/4e936864ab3d5b79b8f050bce39b3667 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