Clay Nichols
Clay Nichols

Reputation: 12139

How to add existing project to Git with TortoiseGit

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

Answers (2)

MrTux
MrTux

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

P. Ekouaghe
P. Ekouaghe

Reputation: 224

Is TortoiseGit required ? Because you could just open a command line, go to project dir and execute 'git init .'

Upvotes: 0

Related Questions