quilkin
quilkin

Reputation: 1447

Adding a new VS2015 project to source control

I have a VS2015 solution with 2 projects; one is correctly source-controlled in GitHub; the second project (which I added later by moving files from elsewhere) isn't in source control and I can't find how to add it. I have found answers for this for VS2013 and earlier but the menu items mentioned aren't available in VS2015 (in both my copies anyway - there is no 'SourceControl' item in the File menu.)

Upvotes: 0

Views: 148

Answers (1)

Phoenix
Phoenix

Reputation: 383

With regular git repositories all you should have to do is right click the solution and then choose Commit. It should offer you to add those files unless they're matched by a rule in .gitignore

Whether or not it gets automatically pushed to GitHub or whether you have to do other things to do that I don't know, not using the Extension.

Upvotes: 0

Related Questions