Git Commands:

New feature branch

git flow feature start CLOUD7-

New bugfix branch

git flow bugfix start CLOUD7-

Change branch

git checkout

Stashing changes

git stash

Unstash changes

git stash pop

Merge branch

git merge (branchname)

Track changes

git add .

Commit

git commit -m "message"

Pushing changes

git push

For cloning

git clone (url)

For initing git flow

git flow init