Symfony2 Version Control using Git on Bitbucket



-> create new repo in bitbucket.org
-> go to local project:
cd /path/to/your/project
git init
git remote add origin https://...................git
git add -A
git commit -m 'Initial commit'
git push -u origin master