Minimum steps for using git

First make sure you have git install on your machine.

Get repository on 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

Pushing files to the cloud:

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