├── .gitmodules ├── .idea ├── .gitignore ├── Support.iml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── README.md └── package.json /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "gitfiend-core"] 2 | path = gitfiend-core 3 | url = https://github.com/GitFiend/gitfiend-core.git 4 | [submodule "gitfiend-shell"] 5 | path = gitfiend-shell 6 | url = https://github.com/GitFiend/gitfiend-shell.git 7 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # Editor-based HTTP Client requests 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /.idea/Support.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # GitFiend 2 | 3 | This is the root repo for [GitFiend](https://gitfiend.com). 4 | It contains the source and the tooling to build and package GitFiend. Contains 2 other repos as submodules: 5 | 6 | - [gitfiend-shell](https://github.com/GitFiend/gitfiend-shell): The app main process and window. Contains scripts to build and package everything. 7 | 8 | - [gitfiend-core](https://github.com/GitFiend/gitfiend-core): 9 | The backend/core of GitFiend. Reads git repos and handles data requests and actions. 10 | 11 | The frontend code is included in gitfiend-shell, but minified for now. 12 | 13 | ## Support 14 | 15 | If you encounter bugs, usability issues, or you think GitFiend is missing critical features, feel free to make an issue. 16 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "support", 3 | "version": "0.46.4", 4 | "description": "GitFiend root repo", 5 | "scripts": {}, 6 | "author": "Toby Suggate", 7 | "license": "MIT" 8 | } 9 | --------------------------------------------------------------------------------