First make sure you have git install on your machine.
git clone https://Muraleetharanboopathi@bitbucket.org/fovcon/graphene-pressure-sensor.git
[update] If you already have a local rpository and you made changes in cloud:
git pull
Before you push, always check status:
git status
If you added new files:
For all files to be added:
git add .
only one specific file:
git add <file_name>
Commit the changes:
git commit -m "msg"
Now time to push:
git push