不得不说 这玩意确实强大 感谢 作者
浅克隆后
完成克隆
1 | git fetch --unshallow |
取回所有分支
1 | git fetch --tags |
包 bundle
打包
1 | git bundle create name.bundle master |
解包
1 | git clone --depth 1 ./name.bundle -b master |
服务器
git daemon
tcp:9418
开启
1 | git daemon --verbose --export-all --base-path=. |
使用
1 | git clone git://ip/name |
允许 push
1 | git config daemon.receivepack true |
参考
- https://git-scm.com/docs/git-daemon/zh_HANS-CN
- https://boxingp.github.io/blog/2015/02/26/use-git-daemon-to-share-git-repository/
- https://blog.csdn.net/yuhuafeixian/article/details/77679930