#Git global setup
git config --global user.name "Your username"
git config --global user.email "Your email address"

#Clone a common repository ##developers##
#Go to your repos folder
git clone http://git.dunahousedev.hu/<PROJECT_SLUG_Name>.git
cd <PROJECT_SLUG_NAME>

#If the cloned repository is empty then you can create your files here or you can use f.e. wget,unzip to copy files from a remote path.
#After it you can add the ALL new files and Commit it in one command
git add -A && git commit -m "Commit message come here"

#Other commands
git pull
git push origin master

