Skip to content
Eystein Bye edited this page Dec 6, 2013 · 1 revision

GitHelp

This is some of the basic commands we need for Git

To check out

Clone the repository: git clone [email protected]:jthagesk/showme.git .

The "." at the end specifies the current folder as the checkout folder.

Update/pull the repository: git pull

To check in

Add file: git add .

Commit all changes: git commit -a -m 'my hola mundo changes'

Push: git push

Create tags

Create tag : git tag -a MsSQL_Version -m MsSQL

Push tag: git push --tags

Clone this wiki locally