├── .gitignore ├── README.md ├── git-for-economists-presentation.pdf ├── git-for-economists-presentation.tex ├── git-model.pdf └── screenshots ├── committing.png ├── diff.png ├── history-diff.png └── revert-history.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpinter/git-for-economists/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpinter/git-for-economists/HEAD/README.md -------------------------------------------------------------------------------- /git-for-economists-presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpinter/git-for-economists/HEAD/git-for-economists-presentation.pdf -------------------------------------------------------------------------------- /git-for-economists-presentation.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpinter/git-for-economists/HEAD/git-for-economists-presentation.tex -------------------------------------------------------------------------------- /git-model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpinter/git-for-economists/HEAD/git-model.pdf -------------------------------------------------------------------------------- /screenshots/committing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpinter/git-for-economists/HEAD/screenshots/committing.png -------------------------------------------------------------------------------- /screenshots/diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpinter/git-for-economists/HEAD/screenshots/diff.png -------------------------------------------------------------------------------- /screenshots/history-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpinter/git-for-economists/HEAD/screenshots/history-diff.png -------------------------------------------------------------------------------- /screenshots/revert-history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fpinter/git-for-economists/HEAD/screenshots/revert-history.png --------------------------------------------------------------------------------