├── .github └── workflows │ ├── pypi.yml │ └── test.pypi.yml ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── demo.gif ├── makefile ├── pyproject.toml ├── pyrightconfig.json ├── src └── sshsync │ ├── __init__.py │ ├── cli.py │ ├── client.py │ ├── config.py │ ├── logging.py │ ├── schemas.py │ └── utils.py └── uv.lock /.github/workflows/pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/.github/workflows/pypi.yml -------------------------------------------------------------------------------- /.github/workflows/test.pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/.github/workflows/test.pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/demo.gif -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/makefile -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyrightconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/pyrightconfig.json -------------------------------------------------------------------------------- /src/sshsync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/src/sshsync/__init__.py -------------------------------------------------------------------------------- /src/sshsync/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/src/sshsync/cli.py -------------------------------------------------------------------------------- /src/sshsync/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/src/sshsync/client.py -------------------------------------------------------------------------------- /src/sshsync/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/src/sshsync/config.py -------------------------------------------------------------------------------- /src/sshsync/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/src/sshsync/logging.py -------------------------------------------------------------------------------- /src/sshsync/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/src/sshsync/schemas.py -------------------------------------------------------------------------------- /src/sshsync/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/src/sshsync/utils.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Blackmamoth/sshsync/HEAD/uv.lock --------------------------------------------------------------------------------