Ultra-simple git usage

To access a shared repository (e.g. Subversion-style), using no branches, your work cycle will look like this:

Initial ‘checkout’:

git clone <remote-repository>

Daily process:

cd <local-repository>
git pull
# Make some changes
git add <changed files>
git commit
git push 

You must be logged in to post a comment.