├── .envrc ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .pylintrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gitstack.py ├── requirements_test.txt ├── test_scenarios.py └── tox.ini /.envrc: -------------------------------------------------------------------------------- 1 | layout python 2 | -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/gitstack/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/gitstack/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/gitstack/HEAD/.pylintrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/gitstack/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/gitstack/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/gitstack/HEAD/README.md -------------------------------------------------------------------------------- /gitstack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/gitstack/HEAD/gitstack.py -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- 1 | black 2 | isort 3 | mypy 4 | pylint==3.0.3 5 | -------------------------------------------------------------------------------- /test_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/gitstack/HEAD/test_scenarios.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevearc/gitstack/HEAD/tox.ini --------------------------------------------------------------------------------