What happens to an existing git repository when you issue git init again?
git init
I created a repository with git init. Created a file, add, commi
From the git docs:
Running git init in an existing repository is safe. It will not overwrite things that are already there. The primary reason for rerunning git init is to pick up newly added templates.