I order to initialize a git repository you have to perform the following steps:
- $ cd /path/to/project
- $ git init
- $ git remote add origin https://xxxxx.com/repo
- $ git add .
- $ git commit -m ‘initial commit’
- $ git push origin master
To synchronize local project (development version) with git you have to perform the following steps:
- cd /path/to/project
- git add ./*
- git commit -m “commit message”
- git push origin master
The simplest guide to use git projects and repositories is published here!