A
A
Alf1622013-12-05 15:50:33
CVS
Alf162, 2013-12-05 15:50:33

Is it possible to deploy a local version control system, because no internet connection?

Hello!
Tell me, please, is it possible to deploy a local version control system, because. no internet connection?

Answer the question

In order to leave comments, you need to log in

4 answer(s)
A
Alexey Kiselev, 2013-12-05
@alexeykiselev

Of course you can.
All modern version control systems can be used locally.
And distributed version control systems (DVCS) such as Git or Mercurial are generally built from interacting local repositories.
Even old SVN allows you to create a local repository.
If the task is to deploy a version control system on the local network of an organization, then there are several ways.
1. Deploy a local Git server using gitlab or gitolite .
2. Organize a pull development model within the network, when the lead developer himself collects changes from the subordinate repositories to his main repository and builds from it. The same can be done on Mercurial.
3. Put Mercurial on the server .
4. Or the old fashioned way, put SVN on the server. I will not even give links, since it is not necessary to do this.

E
egor_nullptr, 2013-12-05
@egor_nullptr

git

I
Ilya Evseev, 2013-12-05
@IlyaEvseev

apt-get install mercurial
cd /path/to/workdir
hg init
hg add .
hg ci -m 'Initial commit.'
Later:
hg addremove
hg commit -m 'Mnogo sdelal snova.'

A
Alf162, 2013-12-05
@Alf162

Those. git or mercurial can be put on your local server server?

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question