0 votes
in Git by
How can you create a repository in Git?

1 Answer

0 votes
by
This is probably the most frequently asked question and the answer to this is really simple.

To create a repository, create a directory for the project if it does not exist, then run the command “git init”. By running this command .git directory will be created in the project directory.
...