Irfan DANISH
Irfan DANISH

Reputation: 8489

Local Client server Git setup for Xcode projects

I have a scenario, we are team of 5 iOS developers. Working on iMAC with OSX 10.8 and xCode version 4.5. Now i want to have Git Version control system during working on same Project. I have read tutorials for Git but all have remote as online server like github.com or bitbucket. I want to create Local network Git server (Most probably my own iMAC) so that we can work on our local network.

Can anybody guide me how can i do that?

Upvotes: 4

Views: 750

Answers (1)

Gandalf
Gandalf

Reputation: 13683

There is sparkleshare here http://sparkleshare.org/ which uses GIT under the hood.

How does it work?

SparkleShare creates a special folder on your computer in which projects are kept. All projects are automatically synced to their respective hosts (you can have multiple projects connected to different hosts) and to your team's SparkleShare folders when someone adds, removes or edits a file.

If you want to install your own private git server i found this useful http://blog.muehlbachler.org/2012/01/how-to-install-a-private-debian-git-server-using-gitolite-and-gitlabhq/

There could be plenty of results if you googled 'git private server'.

I hope that helped a bit.

Edit

There is also gitlab - http://gitlab.org/ which is a self hosted git management software.

Upvotes: 2

Related Questions