Skip to content

Instantly share code, notes, and snippets.

@r-ryantm
Created November 29, 2020 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save r-ryantm/fa38dc72c279a1f08eb63f7a5efa7372 to your computer and use it in GitHub Desktop.
Save r-ryantm/fa38dc72c279a1f08eb63f7a5efa7372 to your computer and use it in GitHub Desktop.
/nix/store/2c9dj3zyvp28i7iawxczyhwchkz1p0jy-python3.7-dulwich-0.20.14
├── bin
│   ├── dul-receive-pack
│   ├── dul-upload-pack
│   └── dulwich
├── lib
│   └── python3.7
│   └── site-packages
│   ├── docs
│   │   └── tutorial
│   │   ├── conclusion.txt
│   │   ├── encoding.txt
│   │   ├── file-format.txt
│   │   ├── index.txt
│   │   ├── introduction.txt
│   │   ├── object-store.txt
│   │   ├── porcelain.txt
│   │   ├── remote.txt
│   │   ├── repo.txt
│   │   └── tag.txt
│   ├── dulwich
│   │   ├── archive.py
│   │   ├── client.py
│   │   ├── cli.py
│   │   ├── config.py
│   │   ├── contrib
│   │   │   ├── diffstat.py
│   │   │   ├── __init__.py
│   │   │   ├── paramiko_vendor.py
│   │   │   ├── __pycache__
│   │   │   │   ├── diffstat.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── paramiko_vendor.cpython-37.pyc
│   │   │   │   ├── release_robot.cpython-37.pyc
│   │   │   │   ├── swift.cpython-37.pyc
│   │   │   │   ├── test_release_robot.cpython-37.pyc
│   │   │   │   ├── test_swift.cpython-37.pyc
│   │   │   │   └── test_swift_smoke.cpython-37.pyc
│   │   │   ├── README.md
│   │   │   ├── release_robot.py
│   │   │   ├── swift.py
│   │   │   ├── test_release_robot.py
│   │   │   ├── test_swift.py
│   │   │   └── test_swift_smoke.py
│   │   ├── _diff_tree.c
│   │   ├── _diff_tree.cpython-37m-x86_64-linux-gnu.so
│   │   ├── diff_tree.py
│   │   ├── errors.py
│   │   ├── fastexport.py
│   │   ├── file.py
│   │   ├── graph.py
│   │   ├── greenthreads.py
│   │   ├── hooks.py
│   │   ├── ignore.py
│   │   ├── index.py
│   │   ├── __init__.py
│   │   ├── lfs.py
│   │   ├── line_ending.py
│   │   ├── log_utils.py
│   │   ├── lru_cache.py
│   │   ├── mailmap.py
│   │   ├── _objects.c
│   │   ├── _objects.cpython-37m-x86_64-linux-gnu.so
│   │   ├── objectspec.py
│   │   ├── objects.py
│   │   ├── object_store.py
│   │   ├── _pack.c
│   │   ├── _pack.cpython-37m-x86_64-linux-gnu.so
│   │   ├── pack.py
│   │   ├── patch.py
│   │   ├── porcelain.py
│   │   ├── protocol.py
│   │   ├── __pycache__
│   │   │   ├── archive.cpython-37.pyc
│   │   │   ├── cli.cpython-37.pyc
│   │   │   ├── client.cpython-37.pyc
│   │   │   ├── config.cpython-37.pyc
│   │   │   ├── diff_tree.cpython-37.pyc
│   │   │   ├── errors.cpython-37.pyc
│   │   │   ├── fastexport.cpython-37.pyc
│   │   │   ├── file.cpython-37.pyc
│   │   │   ├── graph.cpython-37.pyc
│   │   │   ├── greenthreads.cpython-37.pyc
│   │   │   ├── hooks.cpython-37.pyc
│   │   │   ├── ignore.cpython-37.pyc
│   │   │   ├── index.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── lfs.cpython-37.pyc
│   │   │   ├── line_ending.cpython-37.pyc
│   │   │   ├── log_utils.cpython-37.pyc
│   │   │   ├── lru_cache.cpython-37.pyc
│   │   │   ├── mailmap.cpython-37.pyc
│   │   │   ├── objects.cpython-37.pyc
│   │   │   ├── objectspec.cpython-37.pyc
│   │   │   ├── object_store.cpython-37.pyc
│   │   │   ├── pack.cpython-37.pyc
│   │   │   ├── patch.cpython-37.pyc
│   │   │   ├── porcelain.cpython-37.pyc
│   │   │   ├── protocol.cpython-37.pyc
│   │   │   ├── reflog.cpython-37.pyc
│   │   │   ├── refs.cpython-37.pyc
│   │   │   ├── repo.cpython-37.pyc
│   │   │   ├── server.cpython-37.pyc
│   │   │   ├── stash.cpython-37.pyc
│   │   │   ├── walk.cpython-37.pyc
│   │   │   └── web.cpython-37.pyc
│   │   ├── py.typed
│   │   ├── reflog.py
│   │   ├── refs.py
│   │   ├── repo.py
│   │   ├── server.py
│   │   ├── stash.py
│   │   ├── stdint.h
│   │   ├── tests
│   │   │   ├── compat
│   │   │   │   ├── __init__.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── server_utils.cpython-37.pyc
│   │   │   │   │   ├── test_client.cpython-37.pyc
│   │   │   │   │   ├── test_pack.cpython-37.pyc
│   │   │   │   │   ├── test_patch.cpython-37.pyc
│   │   │   │   │   ├── test_repository.cpython-37.pyc
│   │   │   │   │   ├── test_server.cpython-37.pyc
│   │   │   │   │   ├── test_utils.cpython-37.pyc
│   │   │   │   │   ├── test_web.cpython-37.pyc
│   │   │   │   │   └── utils.cpython-37.pyc
│   │   │   │   ├── server_utils.py
│   │   │   │   ├── test_client.py
│   │   │   │   ├── test_pack.py
│   │   │   │   ├── test_patch.py
│   │   │   │   ├── test_repository.py
│   │   │   │   ├── test_server.py
│   │   │   │   ├── test_utils.py
│   │   │   │   ├── test_web.py
│   │   │   │   └── utils.py
│   │   │   ├── data
│   │   │   │   ├── blobs
│   │   │   │   │   ├── 11
│   │   │   │   │   │   └── 11111111111111111111111111111111111111
│   │   │   │   │   ├── 6f
│   │   │   │   │   │   └── 670c0fb53f9463760b7295fbb814e965fb20c8
│   │   │   │   │   ├── 95
│   │   │   │   │   │   └── 4a536f7819d40e6f637f849ee187dd10066349
│   │   │   │   │   └── e6
│   │   │   │   │   └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391
│   │   │   │   ├── commits
│   │   │   │   │   ├── 0d
│   │   │   │   │   │   └── 89f20333fbb1d2f3a94da77f4981373d8f4310
│   │   │   │   │   ├── 5d
│   │   │   │   │   │   └── ac377bdded4c9aeb8dff595f0faeebcc8498cc
│   │   │   │   │   └── 60
│   │   │   │   │   └── dacdc733de308bb77bb76ce0fb0f9b44c9769e
│   │   │   │   ├── indexes
│   │   │   │   │   └── index
│   │   │   │   ├── packs
│   │   │   │   │   ├── pack-bc63ddad95e7321ee734ea11a7a62d314e0d7481.idx
│   │   │   │   │   └── pack-bc63ddad95e7321ee734ea11a7a62d314e0d7481.pack
│   │   │   │   ├── repos
│   │   │   │   │   ├── a.git
│   │   │   │   │   │   ├── HEAD
│   │   │   │   │   │   ├── objects
│   │   │   │   │   │   │   ├── 28
│   │   │   │   │   │   │   │   └── 237f4dc30d0d462658d6b937b08a0f0b6ef55a
│   │   │   │   │   │   │   ├── 2a
│   │   │   │   │   │   │   │   └── 72d929692c41d8554c07f6301757ba18a65d91
│   │   │   │   │   │   │   ├── 4e
│   │   │   │   │   │   │   │   └── f30bbfe26431a69c3820d3a683df54d688f2ec
│   │   │   │   │   │   │   ├── 4f
│   │   │   │   │   │   │   │   └── 2e6529203aa6d44b5af6e3292c837ceda003f9
│   │   │   │   │   │   │   ├── 7d
│   │   │   │   │   │   │   │   └── 9a07d797595ef11344549b8d08198e48c15364
│   │   │   │   │   │   │   ├── a2
│   │   │   │   │   │   │   │   └── 96d0bb611188cabb256919f36bc30117cca005
│   │   │   │   │   │   │   ├── a9
│   │   │   │   │   │   │   │   └── 0fa2d900a17e99b433217e988c4eb4a2e9a097
│   │   │   │   │   │   │   ├── b0
│   │   │   │   │   │   │   │   └── 931cadc54336e78a1d980420e3268903b57a50
│   │   │   │   │   │   │   └── ff
│   │   │   │   │   │   │   └── d47d45845a8f6576491e1edb97e3fe6a850e7f
│   │   │   │   │   │   ├── packed-refs
│   │   │   │   │   │   └── refs
│   │   │   │   │   │   ├── heads
│   │   │   │   │   │   │   └── master
│   │   │   │   │   │   └── tags
│   │   │   │   │   │   └── mytag
│   │   │   │   │   ├── empty.git
│   │   │   │   │   │   ├── config
│   │   │   │   │   │   ├── HEAD
│   │   │   │   │   │   ├── objects
│   │   │   │   │   │   │   ├── info
│   │   │   │   │   │   │   └── pack
│   │   │   │   │   │   └── refs
│   │   │   │   │   │   ├── heads
│   │   │   │   │   │   └── tags
│   │   │   │   │   ├── issue88_expect_ack_nak_client.export
│   │   │   │   │   ├── issue88_expect_ack_nak_other.export
│   │   │   │   │   ├── issue88_expect_ack_nak_server.export
│   │   │   │   │   ├── ooo_merge.git
│   │   │   │   │   │   ├── HEAD
│   │   │   │   │   │   ├── objects
│   │   │   │   │   │   │   ├── 29
│   │   │   │   │   │   │   │   └── 69be3e8ee1c0222396a5611407e4769f14e54b
│   │   │   │   │   │   │   ├── 38
│   │   │   │   │   │   │   │   └── 74e9c60a6d149c44c928140f250d81e6381520
│   │   │   │   │   │   │   ├── 6f
│   │   │   │   │   │   │   │   └── 670c0fb53f9463760b7295fbb814e965fb20c8
│   │   │   │   │   │   │   ├── 70
│   │   │   │   │   │   │   │   └── c190eb48fa8bbb50ddc692a17b44cb781af7f6
│   │   │   │   │   │   │   ├── 76
│   │   │   │   │   │   │   │   └── 01d7f6231db6a57f7bbb79ee52e4d462fd44d1
│   │   │   │   │   │   │   ├── 90
│   │   │   │   │   │   │   │   └── 182552c4a85a45ec2a835cadc3451bebdfe870
│   │   │   │   │   │   │   ├── 95
│   │   │   │   │   │   │   │   └── 4a536f7819d40e6f637f849ee187dd10066349
│   │   │   │   │   │   │   ├── b2
│   │   │   │   │   │   │   │   └── a2766a2879c209ab1176e7e778b81ae422eeaa
│   │   │   │   │   │   │   ├── f5
│   │   │   │   │   │   │   │   └── 07291b64138b875c28e03469025b1ea20bc614
│   │   │   │   │   │   │   ├── f9
│   │   │   │   │   │   │   │   └── e39b120c68182a4ba35349f832d0e4e61f485c
│   │   │   │   │   │   │   └── fb
│   │   │   │   │   │   │   └── 5b0425c7ce46959bec94d54b9a157645e114f5
│   │   │   │   │   │   └── refs
│   │   │   │   │   │   └── heads
│   │   │   │   │   │   └── master
│   │   │   │   │   ├── refs.git
│   │   │   │   │   │   ├── HEAD
│   │   │   │   │   │   ├── objects
│   │   │   │   │   │   │   ├── 3b
│   │   │   │   │   │   │   │   └── 9e5457140e738c2dcd39bf6d7acf88379b90d1
│   │   │   │   │   │   │   ├── 3e
│   │   │   │   │   │   │   │   └── c9c43c84ff242e3ef4a9fc5bc111fd780a76a8
│   │   │   │   │   │   │   ├── 42
│   │   │   │   │   │   │   │   └── d06bd4b77fed026b154d16493e5deab78f02ec
│   │   │   │   │   │   │   ├── a1
│   │   │   │   │   │   │   │   └── 8114c31713746a33a2e70d9914d1ef3e781425
│   │   │   │   │   │   │   ├── cd
│   │   │   │   │   │   │   │   └── a609072918d7b70057b6bef9f4c2537843fcfe
│   │   │   │   │   │   │   └── df
│   │   │   │   │   │   │   └── 6800012397fb85c56e7418dd4eb9405dee075c
│   │   │   │   │   │   ├── packed-refs
│   │   │   │   │   │   └── refs
│   │   │   │   │   │   ├── heads
│   │   │   │   │   │   │   ├── 40-char-ref-aaaaaaaaaaaaaaaaaa
│   │   │   │   │   │   │   ├── loop
│   │   │   │   │   │   │   └── master
│   │   │   │   │   │   └── tags
│   │   │   │   │   │   └── refs-0.2
│   │   │   │   │   ├── server_new.export
│   │   │   │   │   ├── server_old.export
│   │   │   │   │   ├── simple_merge.git
│   │   │   │   │   │   ├── HEAD
│   │   │   │   │   │   ├── objects
│   │   │   │   │   │   │   ├── 0d
│   │   │   │   │   │   │   │   └── 89f20333fbb1d2f3a94da77f4981373d8f4310
│   │   │   │   │   │   │   ├── 1b
│   │   │   │   │   │   │   │   └── 6318f651a534b38f9c7aedeebbd56c1e896853
│   │   │   │   │   │   │   ├── 29
│   │   │   │   │   │   │   │   └── 69be3e8ee1c0222396a5611407e4769f14e54b
│   │   │   │   │   │   │   ├── 4c
│   │   │   │   │   │   │   │   └── ffe90e0a41ad3f5190079d7c8f036bde29cbe6
│   │   │   │   │   │   │   ├── 5d
│   │   │   │   │   │   │   │   └── ac377bdded4c9aeb8dff595f0faeebcc8498cc
│   │   │   │   │   │   │   ├── 60
│   │   │   │   │   │   │   │   └── dacdc733de308bb77bb76ce0fb0f9b44c9769e
│   │   │   │   │   │   │   ├── 6f
│   │   │   │   │   │   │   │   └── 670c0fb53f9463760b7295fbb814e965fb20c8
│   │   │   │   │   │   │   ├── 70
│   │   │   │   │   │   │   │   └── c190eb48fa8bbb50ddc692a17b44cb781af7f6
│   │   │   │   │   │   │   ├── 90
│   │   │   │   │   │   │   │   └── 182552c4a85a45ec2a835cadc3451bebdfe870
│   │   │   │   │   │   │   ├── 95
│   │   │   │   │   │   │   │   └── 4a536f7819d40e6f637f849ee187dd10066349
│   │   │   │   │   │   │   ├── ab
│   │   │   │   │   │   │   │   └── 64bbdcc51b170d21588e5c5d391ee5c0c96dfd
│   │   │   │   │   │   │   ├── d4
│   │   │   │   │   │   │   │   └── bdad6549dfedf25d3b89d21f506aff575b28a7
│   │   │   │   │   │   │   ├── d8
│   │   │   │   │   │   │   │   └── 0c186a03f423a81b39df39dc87fd269736ca86
│   │   │   │   │   │   │   └── e6
│   │   │   │   │   │   │   └── 9de29bb2d1d6434b8b29ae775ad8c2e48c5391
│   │   │   │   │   │   └── refs
│   │   │   │   │   │   └── heads
│   │   │   │   │   │   └── master
│   │   │   │   │   └── submodule
│   │   │   │   │   └── dotgit
│   │   │   │   ├── tags
│   │   │   │   │   └── 71
│   │   │   │   │   └── 033db03a03c6a36721efcf1968dd8f8e0cf023
│   │   │   │   └── trees
│   │   │   │   └── 70
│   │   │   │   └── c190eb48fa8bbb50ddc692a17b44cb781af7f6
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── test_archive.cpython-37.pyc
│   │   │   │   ├── test_blackbox.cpython-37.pyc
│   │   │   │   ├── test_client.cpython-37.pyc
│   │   │   │   ├── test_config.cpython-37.pyc
│   │   │   │   ├── test_diff_tree.cpython-37.pyc
│   │   │   │   ├── test_fastexport.cpython-37.pyc
│   │   │   │   ├── test_file.cpython-37.pyc
│   │   │   │   ├── test_grafts.cpython-37.pyc
│   │   │   │   ├── test_graph.cpython-37.pyc
│   │   │   │   ├── test_greenthreads.cpython-37.pyc
│   │   │   │   ├── test_hooks.cpython-37.pyc
│   │   │   │   ├── test_ignore.cpython-37.pyc
│   │   │   │   ├── test_index.cpython-37.pyc
│   │   │   │   ├── test_lfs.cpython-37.pyc
│   │   │   │   ├── test_line_ending.cpython-37.pyc
│   │   │   │   ├── test_lru_cache.cpython-37.pyc
│   │   │   │   ├── test_mailmap.cpython-37.pyc
│   │   │   │   ├── test_missing_obj_finder.cpython-37.pyc
│   │   │   │   ├── test_objects.cpython-37.pyc
│   │   │   │   ├── test_objectspec.cpython-37.pyc
│   │   │   │   ├── test_object_store.cpython-37.pyc
│   │   │   │   ├── test_pack.cpython-37.pyc
│   │   │   │   ├── test_patch.cpython-37.pyc
│   │   │   │   ├── test_porcelain.cpython-37.pyc
│   │   │   │   ├── test_protocol.cpython-37.pyc
│   │   │   │   ├── test_reflog.cpython-37.pyc
│   │   │   │   ├── test_refs.cpython-37.pyc
│   │   │   │   ├── test_repository.cpython-37.pyc
│   │   │   │   ├── test_server.cpython-37.pyc
│   │   │   │   ├── test_stash.cpython-37.pyc
│   │   │   │   ├── test_utils.cpython-37.pyc
│   │   │   │   ├── test_walk.cpython-37.pyc
│   │   │   │   ├── test_web.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── test_archive.py
│   │   │   ├── test_blackbox.py
│   │   │   ├── test_client.py
│   │   │   ├── test_config.py
│   │   │   ├── test_diff_tree.py
│   │   │   ├── test_fastexport.py
│   │   │   ├── test_file.py
│   │   │   ├── test_grafts.py
│   │   │   ├── test_graph.py
│   │   │   ├── test_greenthreads.py
│   │   │   ├── test_hooks.py
│   │   │   ├── test_ignore.py
│   │   │   ├── test_index.py
│   │   │   ├── test_lfs.py
│   │   │   ├── test_line_ending.py
│   │   │   ├── test_lru_cache.py
│   │   │   ├── test_mailmap.py
│   │   │   ├── test_missing_obj_finder.py
│   │   │   ├── test_objectspec.py
│   │   │   ├── test_objects.py
│   │   │   ├── test_object_store.py
│   │   │   ├── test_pack.py
│   │   │   ├── test_patch.py
│   │   │   ├── test_porcelain.py
│   │   │   ├── test_protocol.py
│   │   │   ├── test_reflog.py
│   │   │   ├── test_refs.py
│   │   │   ├── test_repository.py
│   │   │   ├── test_server.py
│   │   │   ├── test_stash.py
│   │   │   ├── test_utils.py
│   │   │   ├── test_walk.py
│   │   │   ├── test_web.py
│   │   │   └── utils.py
│   │   ├── walk.py
│   │   └── web.py
│   └── dulwich-0.20.14.dist-info
│   ├── AUTHORS
│   ├── COPYING
│   ├── direct_url.json
│   ├── entry_points.txt
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── REQUESTED
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
99 directories, 279 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment