Where does Git store files?

前端 未结 10 1137
花落未央
花落未央 2020-12-08 09:15

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 stor

10条回答
  •  眼角桃花
    2020-12-08 09:39

    In a .git directory in the root of the project. Unlike some other version control systems, notably CVS, there are no additional directories in any of the subdirectories.

提交回复
热议问题