git - How to conduct version control offline(without networking literally)? -
our team developing same software project on separate pcs(the networking blocked due our company rule), drug. now, our developing flow serial. when member adds feature, had wait b finish development , copy of b's project. so, here question:
- how conduct version control when networking not allowed? there best practices this? there git implementation allows create git repository having setting server , corresponding key, stuff that?
any suggestion appreciated?
you can git bundle
@ anytime, , transmit single file same way getting copy of b's project.
that file act git repo , not need server setup. once received other party, he/she can pull file. , missing commits.
i had develop incremental bundles before.
transmitting repo single file limit risk of data corruption during said transfer.
Comments
Post a Comment