8

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.

Community
  • 1
  • 1
Clay Nichols
  • 11,848
  • 30
  • 109
  • 170

2 Answers2

8

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).

MrTux
  • 32,350
  • 30
  • 109
  • 146
0

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

P. Ekouaghe
  • 214
  • 5
  • 10