V
V
Vadim2015-03-02 22:58:49
git
Vadim, 2015-03-02 22:58:49

What repository can work without a dedicated server and permanent ip addresses?

We are currently using SVN. For some time the server was turned off and this led to some inconvenience. There was a desire to look towards newer (fashionable) distributed hard currency. And a question arose. How can I synchronize our repositories with my colleagues if we do not have permanent ip addresses and there is no separate server through which this could be done?
First of all, of course, GIT and Mercurial are of interest.
Or is it all for the local network, otherwise, all the same server, only there are local commits?

Answer the question

In order to leave comments, you need to log in

6 answer(s)
S
Saboteur, 2015-03-03
@saboteur_kiev

Use github - it's free, convenient, git, and it has an IP.

P
Puma Thailand, 2015-03-03
@opium

use a free private repository on bitbucket and link through it

A
Alexander Taratin, 2017-12-02
@partyzanx

https://jsfiddle.net/khm857zj/

function downloadFile(url){
  var link = document.createElement('a');
  link.href = url;
  link.target="_blank";
  link.download='';
  
  var event = document.createEvent("MouseEvents");
  event.initMouseEvent("click");
  link.dispatchEvent(event);
}

var but = document.getElementById('dbut')
but.addEventListener('click', function(){
  downloadFile(but.getAttribute('data-path'));
})

O
Oleg, 2017-12-02
@politon

What the hell is that? Easier

<a href="/Worksheets/grammar_hsk1/Basic_singular_pronouns_3-1-0-9.pdf"> Открыть файл</a>
<a href="/Worksheets/grammar_hsk1/Basic_singular_pronouns_3-1-0-9.pdf" download>Скачать файл</a>

A
Anton Filippov, 2017-12-02
@vicodin

What's wrong with you? You have already asked this question and received an answer
How to make a download button?
The fact that you added a clarification could have been done in the same question, and not spammed.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question