Skip to content

Instantly share code, notes, and snippets.

@s5b
Created November 6, 2012 02:04
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s5b/4022072 to your computer and use it in GitHub Desktop.
Save s5b/4022072 to your computer and use it in GitHub Desktop.
Starting a new repository - quickly
These steps show you how to get up and running fast with a new repository on Github.
In the steps, I am logged in to Github as "s5b", and I am creating a new repository
named "timeshiek".
1. Login to the Github web interface: <https://github.com/>.
2. Create a new repository, and while creating it mark the initialisation checkbox.
3. Copy the "git@github.com:s5b/timeshiek.git" string from the website into your clipboard.
3. On your local machine: change directories to the parent directory of where you want
the new repository to exist. (For example: in my case I have a directory named ~/workspace
which contains all my working projects so I would type: cd ~/workspace)
4. Enter the following command: git clone git@github.com:s5b/timeshiek.git
5. Change directories into your new directory: cd timeshiek
6. Start work...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment