user479911
user479911

Reputation:

Software for Git in the enterprise?

We're looking at the prospect of using Git on our team, and hopefully get a lot of other dev teams to join us. If everything goes well I might be setting up Git for everyone. Currently I'm looking to test:

I'd love some thoughts on which ones are good, and if I've left out something I shouldn't.

I'm not quite sure what features we want and/or need, but we're mostly .NET and Java developers, Active Directory authentication is a must and JIRA integration would be sweet.

Upvotes: 7

Views: 2219

Answers (2)

manalang
manalang

Reputation: 805

If you're using JIRA, you should definitely take a look at Stash. It's built on the same platform and integrates with JIRA well. It also integrates with Active Directory out of the box.

Upvotes: 5

Luke
Luke

Reputation: 3381

There is another solution, it's free and awesome, we use it as internal repository management

http://gitlabhq.com

On GitHub you can find out how to install it on your server:

https://github.com/gitlabhq/gitlabhq/wiki

For AD authentication, you must copy the config file config/initializers/omniauth.rb.sample to config/initializers/omniauth.rb, then edit it with your AD settings and finally restart gitlab.

Upvotes: 5

Related Questions