├── .dir-locals.el ├── .elpaignore ├── .github └── workflows │ └── compile.yml ├── .gitignore ├── .mailmap ├── LICENSE ├── Makefile ├── README.org ├── git-modes.el ├── gitattributes-mode.el ├── gitconfig-mode.el └── gitignore-mode.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.elpaignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/.elpaignore -------------------------------------------------------------------------------- /.github/workflows/compile.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/.github/workflows/compile.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/.gitignore -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/.mailmap -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/README.org -------------------------------------------------------------------------------- /git-modes.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/git-modes.el -------------------------------------------------------------------------------- /gitattributes-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/gitattributes-mode.el -------------------------------------------------------------------------------- /gitconfig-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/gitconfig-mode.el -------------------------------------------------------------------------------- /gitignore-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magit/git-modes/HEAD/gitignore-mode.el --------------------------------------------------------------------------------