This website works better with JavaScript
Trang chủ
Khám phá
Trợ giúp
Đăng nhập
mirrors
/
borg
mirror of
https://github.com/borgbackup/borg
Xem
2
Star
0
Fork
0
Các tập tin
Các vấn đề
0
Wiki
Browse Source
move borg package to src/
Thomas Waldmann
9 năm trước cách đây
mục cha
d22bbe17c5
commit
d1ea925a5b
48 tập tin đã thay đổi
với
0 bổ sung
và
0 xóa
Split View
Hiển thị tình trạng sai khác
0
0
src/borg/__init__.py
0
0
src/borg/__main__.py
0
0
src/borg/_chunker.c
0
0
src/borg/_hashindex.c
0
0
src/borg/archive.py
0
0
src/borg/archiver.py
0
0
src/borg/cache.py
0
0
src/borg/chunker.pyx
0
0
src/borg/compress.pyx
0
0
src/borg/constants.py
0
0
src/borg/crypto.pyx
0
0
src/borg/fuse.py
0
0
src/borg/hash_sizes.py
0
0
src/borg/hashindex.pyx
0
0
src/borg/helpers.py
0
0
src/borg/key.py
0
0
src/borg/locking.py
0
0
src/borg/logger.py
0
0
src/borg/lrucache.py
0
0
src/borg/platform.py
0
0
src/borg/platform_darwin.pyx
0
0
src/borg/platform_freebsd.pyx
0
0
src/borg/platform_linux.pyx
0
0
src/borg/remote.py
0
0
src/borg/repository.py
0
0
src/borg/selftest.py
0
0
src/borg/shellpattern.py
0
0
src/borg/testsuite/__init__.py
0
0
src/borg/testsuite/archive.py
0
0
src/borg/testsuite/archiver.py
0
0
src/borg/testsuite/benchmark.py
0
0
src/borg/testsuite/chunker.py
0
0
src/borg/testsuite/compress.py
0
0
src/borg/testsuite/conftest.py
0
0
src/borg/testsuite/crypto.py
0
0
src/borg/testsuite/hashindex.py
0
0
src/borg/testsuite/helpers.py
0
0
src/borg/testsuite/key.py
0
0
src/borg/testsuite/locking.py
0
0
src/borg/testsuite/logger.py
0
0
src/borg/testsuite/lrucache.py
0
0
src/borg/testsuite/platform.py
0
0
src/borg/testsuite/repository.py
0
0
src/borg/testsuite/shellpattern.py
0
0
src/borg/testsuite/upgrader.py
0
0
src/borg/testsuite/xattr.py
0
0
src/borg/upgrader.py
0
0
src/borg/xattr.py
+ 0
- 0
borg/__init__.py → src/borg/__init__.py
Xem Tập Tin
+ 0
- 0
borg/__main__.py → src/borg/__main__.py
Xem Tập Tin
+ 0
- 0
borg/_chunker.c → src/borg/_chunker.c
Xem Tập Tin
+ 0
- 0
borg/_hashindex.c → src/borg/_hashindex.c
Xem Tập Tin
+ 0
- 0
borg/archive.py → src/borg/archive.py
Xem Tập Tin
+ 0
- 0
borg/archiver.py → src/borg/archiver.py
Xem Tập Tin
+ 0
- 0
borg/cache.py → src/borg/cache.py
Xem Tập Tin
+ 0
- 0
borg/chunker.pyx → src/borg/chunker.pyx
Xem Tập Tin
+ 0
- 0
borg/compress.pyx → src/borg/compress.pyx
Xem Tập Tin
+ 0
- 0
borg/constants.py → src/borg/constants.py
Xem Tập Tin
+ 0
- 0
borg/crypto.pyx → src/borg/crypto.pyx
Xem Tập Tin
+ 0
- 0
borg/fuse.py → src/borg/fuse.py
Xem Tập Tin
+ 0
- 0
borg/hash_sizes.py → src/borg/hash_sizes.py
Xem Tập Tin
+ 0
- 0
borg/hashindex.pyx → src/borg/hashindex.pyx
Xem Tập Tin
+ 0
- 0
borg/helpers.py → src/borg/helpers.py
Xem Tập Tin
+ 0
- 0
borg/key.py → src/borg/key.py
Xem Tập Tin
+ 0
- 0
borg/locking.py → src/borg/locking.py
Xem Tập Tin
+ 0
- 0
borg/logger.py → src/borg/logger.py
Xem Tập Tin
+ 0
- 0
borg/lrucache.py → src/borg/lrucache.py
Xem Tập Tin
+ 0
- 0
borg/platform.py → src/borg/platform.py
Xem Tập Tin
+ 0
- 0
borg/platform_darwin.pyx → src/borg/platform_darwin.pyx
Xem Tập Tin
+ 0
- 0
borg/platform_freebsd.pyx → src/borg/platform_freebsd.pyx
Xem Tập Tin
+ 0
- 0
borg/platform_linux.pyx → src/borg/platform_linux.pyx
Xem Tập Tin
+ 0
- 0
borg/remote.py → src/borg/remote.py
Xem Tập Tin
+ 0
- 0
borg/repository.py → src/borg/repository.py
Xem Tập Tin
+ 0
- 0
borg/selftest.py → src/borg/selftest.py
Xem Tập Tin
+ 0
- 0
borg/shellpattern.py → src/borg/shellpattern.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/__init__.py → src/borg/testsuite/__init__.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/archive.py → src/borg/testsuite/archive.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/archiver.py → src/borg/testsuite/archiver.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/benchmark.py → src/borg/testsuite/benchmark.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/chunker.py → src/borg/testsuite/chunker.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/compress.py → src/borg/testsuite/compress.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/conftest.py → src/borg/testsuite/conftest.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/crypto.py → src/borg/testsuite/crypto.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/hashindex.py → src/borg/testsuite/hashindex.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/helpers.py → src/borg/testsuite/helpers.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/key.py → src/borg/testsuite/key.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/locking.py → src/borg/testsuite/locking.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/logger.py → src/borg/testsuite/logger.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/lrucache.py → src/borg/testsuite/lrucache.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/platform.py → src/borg/testsuite/platform.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/repository.py → src/borg/testsuite/repository.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/shellpattern.py → src/borg/testsuite/shellpattern.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/upgrader.py → src/borg/testsuite/upgrader.py
Xem Tập Tin
+ 0
- 0
borg/testsuite/xattr.py → src/borg/testsuite/xattr.py
Xem Tập Tin
+ 0
- 0
borg/upgrader.py → src/borg/upgrader.py
Xem Tập Tin
+ 0
- 0
borg/xattr.py → src/borg/xattr.py
Xem Tập Tin