equal
deleted
inserted
replaced
514 |
514 |
515 |
515 |
516 rev = webcommand(b'rev')(changeset) |
516 rev = webcommand(b'rev')(changeset) |
517 |
517 |
518 |
518 |
519 def decodepath(path): |
519 def decodepath(path: bytes) -> bytes: |
520 # type: (bytes) -> bytes |
|
521 """Hook for mapping a path in the repository to a path in the |
520 """Hook for mapping a path in the repository to a path in the |
522 working copy. |
521 working copy. |
523 |
522 |
524 Extensions (e.g., largefiles) can override this to remap files in |
523 Extensions (e.g., largefiles) can override this to remap files in |
525 the virtual file system presented by the manifest command below.""" |
524 the virtual file system presented by the manifest command below.""" |