How to set up collaboration with Git?

Since for technical and legal reasons it is not possible to use a central repository for some projects, I would like to configure the version using Git in ad hoc mode without a catalytic server. How can I do that?

+4
source share
2 answers

This will mean sending patches, for example, by email.

See " Git Tip of the Week: Email Fixes "

One way to get changes is to provide a patch or a set of changes that can be applied to the remote repository at the other end.

Git Linux, , () . ( - .)

- git bundle, .
, .

.

+2

Git DVCS, () , CVCS-

  • , (ssh://, git://, http://),
  • git clone | git remote add (1: )
  • git pull | git push
+1

Source: https://habr.com/ru/post/1546463/


All Articles