Here is a list of some basic Git commands to get you going with Git;

Create a new local repository: git init

Check out a repository: git clone /path/to/repository

Add files: git add (filename), git add *

Commit: git commit -m “Commit message”

Push: git push origin master

Connect to a remote repository: git remote add origin (server)

For more detail, check out the Atlassian Git Tutorials