git is a great tool to keep track of code, and sharing it remotly to others in your team. to start go to your app repo cd ~/effingcoolapp
and the run git init
what this will do is start up a embedded git database inside of the directory. This directory is now considered to be a git repositiory ( a collection of data versioned by git ). If you look you can see the database/directory created.. use ls -a
.
use the command git remote add name https://repo.example.com
to add a remote to you repo so now you have easy push and pull access to a remote repo, also in inverse you can do git remote rm name
to remove a branch,