Git – Where does Git store files

git

I just ran the following commands on my Ruby on Rails project:

git init
git add .
git commit -a -m 'Initial'

Where does Git actually store this repository? (It's on my local machine, but where?)

Best Answer

It will create your repository in the .git folder in the current directory.