How to change folder with git bash?

Question

My default git folder is C:\Users\username\.git.

What command should I use to go into C:/project?

Answer

The command is:

cd  /c/project/

Tip:
Use the pwd command to see which path you are currently in, handy when you did a right-click "Git Bash here..."

How can I know if a branch has been already merged into master?

Move existing, uncommitted work to a new branch in Git