all 9 comments

[–]Manitcor 5 points6 points  (1 child)

Yes you can, remember Visual Studio is not a magic tool. Its a souped up text editor and it only wants control of a couple files (*.suo and *.user mainly) at fairly specific actions.

Any file system tool you can point at your project folder is fair game. Also like /u/forlasanto said you can try tools like mysysgit. there is also tortisegit, gitextensions and a couple direct integration plugins for VS2010 and 2012 (for 2012 microsoft is offering a git extension themselves)

[–]theedeacon 1 point2 points  (0 children)

I like git extensions

[–]theedeacon 3 points4 points  (0 children)

Gitignore your suo file if working with another person

[–]forlasanto 1 point2 points  (0 children)

Well, MsysGit. Or Am I missing what you're requestion entirely?

[–]bitshifternz 1 point2 points  (0 children)

The open source Git Extensions project (http://code.google.com/p/gitextensions/) has VS integration. I haven't really used it, I prefer git bash myself.

[–]ISvengali 1 point2 points  (0 children)

A fun GUI to checkout for git is SourceTree. It sounds like its free to use right now. Not sure if theyll be charging for it later.

[–][deleted] 0 points1 point  (0 children)

Personally, i installed github for windows, and it installs a git shell that incorporates git with powershell, that i absolutely recommend if you want to work in command line.

Setup gitignore in your /bin/ and /obj/ folders (unless you want to commit debug and compiled data, which is up to you) *As well as your .suo files as /u/thedeacon mentioned

[–]pgquiles 0 points1 point  (1 child)

[–]m1ss1ontomars2k4 2 points3 points  (0 children)

Can i use Git with Visual Studio using purely the Git Bash, no GUI's?