├── .gitignore ├── LICENSE ├── Makefile ├── README.rst ├── conf.py ├── gitwash ├── branch_dropdown.png ├── configure_git.rst ├── development_workflow.rst ├── following_latest.rst ├── forking_button.png ├── forking_hell.rst ├── git_development.rst ├── git_install.rst ├── git_intro.rst ├── git_links.inc ├── git_resources.rst ├── index.rst ├── known_projects.inc ├── links.inc ├── maintainer_workflow.rst ├── patching.rst ├── pull_button.png ├── set_up_fork.rst └── this_project.inc ├── gitwash_dumper.py ├── index.rst ├── make.bat └── tests └── test_dump.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/README.rst -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/conf.py -------------------------------------------------------------------------------- /gitwash/branch_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/branch_dropdown.png -------------------------------------------------------------------------------- /gitwash/configure_git.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/configure_git.rst -------------------------------------------------------------------------------- /gitwash/development_workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/development_workflow.rst -------------------------------------------------------------------------------- /gitwash/following_latest.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/following_latest.rst -------------------------------------------------------------------------------- /gitwash/forking_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/forking_button.png -------------------------------------------------------------------------------- /gitwash/forking_hell.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/forking_hell.rst -------------------------------------------------------------------------------- /gitwash/git_development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/git_development.rst -------------------------------------------------------------------------------- /gitwash/git_install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/git_install.rst -------------------------------------------------------------------------------- /gitwash/git_intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/git_intro.rst -------------------------------------------------------------------------------- /gitwash/git_links.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/git_links.inc -------------------------------------------------------------------------------- /gitwash/git_resources.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/git_resources.rst -------------------------------------------------------------------------------- /gitwash/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/index.rst -------------------------------------------------------------------------------- /gitwash/known_projects.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/known_projects.inc -------------------------------------------------------------------------------- /gitwash/links.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/links.inc -------------------------------------------------------------------------------- /gitwash/maintainer_workflow.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/maintainer_workflow.rst -------------------------------------------------------------------------------- /gitwash/patching.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/patching.rst -------------------------------------------------------------------------------- /gitwash/pull_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/pull_button.png -------------------------------------------------------------------------------- /gitwash/set_up_fork.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/set_up_fork.rst -------------------------------------------------------------------------------- /gitwash/this_project.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash/this_project.inc -------------------------------------------------------------------------------- /gitwash_dumper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/gitwash_dumper.py -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/index.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/make.bat -------------------------------------------------------------------------------- /tests/test_dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthew-brett/gitwash/HEAD/tests/test_dump.py --------------------------------------------------------------------------------