Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What source control system? [closed]

I desperately need source control to manage projects between more than one developer.

A long time ago I used Visual Source Safe and it worked quite well.

What free substitutes can be recommended? I have the following basic requirements:

  • I need to host the repository on my own server.
  • I do not want extra clutter within my source files, like CVS does.
  • I need proper check in / check out, so that nobody can change a module until I've checked it back in.
  • I don't want / need source code merging / branching.

We use Delphi for web development, so many HTML files, images, SQL files, etc.

Any recommendations?

like image 832
Hein du Plessis Avatar asked Nov 27 '22 21:11

Hein du Plessis


1 Answers

Git or Mercurial.

  • both are distributed and fast (each repository can act as 'server')
  • no extra clutter just one .git or .hg directory
  • you can pull changes from trusted or verified sources
like image 116
miku Avatar answered Dec 21 '22 22:12

miku