5 Nisan 2021 Pazartesi

git bundle seçeneği

Örnek 
Açıklaması şöyle
A better way to share git repositories offline is to create a bundle file and send that to your friend, e.g.:
git bundle create /tmp/myrepo.bundle --all
Then you can send myrepo.bundle to your friend and they can clone from it like they would from any remote:
git clone myrepo.bundle 
That would be a better way to make sure that you're not sharing loose objects that aren't intended to be seen by others.

Hiç yorum yok:

Yorum Gönder