Ken
Ken

Reputation: 2808

Integrating Bonobo Git Server with VS 2015 Community Edition

I am using Visual Studio Community Edition (local Development Computer) and I have a Bonobo Git Server setup and running on a separate machine. I am trying to connect through Visual Studio to the server - but somewhere I am failing . VS2015 has local Git - but my Bonobo Git server is on a local instance server with in our domain. How do I point VS2015 Connections to this, I am looking for extensions online but so far I draw blanks and components that work on the local development machine. Please stay on point with the question - I do not want team server I, I do not want github ; I am looking for the answer to my question , not some other service or some other thing.

Upvotes: 5

Views: 5935

Answers (1)

J Gregg
J Gregg

Reputation: 106

Here's how I did it:

  1. Create a local Git repo by cloning from your bonobo's Git URL:

enter image description here

  1. Double click the new "local" repo:

enter image description here

  1. Add or create a project or solution in the Repo home page:

enter image description here

  1. Do some work. Make some code. Whatever.

  2. Check out your changes by clicking the Changes button in the same Repo home page (Also seen in the previous image)

  3. Add a commit message and then Commit All (assuming that's what you want to do) in the Changes screen:

enter image description here

Might want to note that we're using AD for our Bonobo server and the account running Visual Studio is what is pushing the changes. It's actually a little more friendly than the SharePoint and VS2010 worflow I'm used to, despite being a little weirder to set up.

Upvotes: 9

Related Questions