change folder git bash code example
Example 1: how to remove git directory in terminal
rm -rf .git
Example 2: cd git bash
cd /c/project/
Example 3: how to rename a file inside git bash
$ git clone [email protected]:username/reponame.git
$ cd reponame
$ git mv README README.md
$ git commit -m "renamed"
$ git push origin master