Reputation: 12139
This it the TortoiseGit version of this question
If I have an existing project and I want to add add it to Git version control and "check it out" immediately, what's the TortoiseGit command for that?
I searched in tortoisegit "create repository here" and found nothing useful.
Upvotes: 8
Views: 9318
Reputation: 34003
Open the context menu of the main folder and select "Git Create repository here...". And commit all files (don't forget to add files you don't want to track to the ignore list).
Upvotes: 9
Reputation: 224
Is TortoiseGit required ? Because you could just open a command line, go to project dir and execute 'git init .'
Upvotes: 0