Getting Started with Git

From PeformIQ Upgrade
Jump to navigation Jump to search

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