Getting Started with Git
Revision as of 03:03, 13 June 2014 by PeterHarding (talk | contribs) (Created page with "Also see - Git_Notes | [Git_SCM_Notes | Summary_of_Git_Commands =Setting up a Repository= ==Create in Online Repo Manager== Use an online repository manager suc...")
Also see - Git_Notes | [[[Git_SCM_Notes]] | Summary_of_Git_Commands
Setting up a Repository
Create in Online Repo Manager
Use an online repository manager such as GitHub or BitBucket to host you repository. Go to the URL for the site, create and account and login. The site will provide a workflow to create a new repository (or import and existing codebase).
Once you have created a new bare repository clone it to your local workstation and start adding components
e.g.
git clone xxxxx XXX
Create Repository Locally
git init bare
Also see - Git_Notes | Git_SCM_Notes | Summary_of_Git_Commands