├── .gitignore ├── LICENSE ├── Launcher.exe ├── Launcher.sh ├── README.MD ├── cli.js ├── images ├── processing1.svg └── processing2.svg ├── index.html ├── main.js ├── package.json ├── renderer ├── git.js ├── main.js └── ui.js ├── renovate.json └── vendor ├── bootstrap ├── css │ └── bootstrap-3.3.7.min.css ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 └── js │ └── bootstrap-3.3.7.min.js ├── debian.dict-8.7.txt └── jquery.factory-3.2.1.min.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/LICENSE -------------------------------------------------------------------------------- /Launcher.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/Launcher.exe -------------------------------------------------------------------------------- /Launcher.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | nohup npm start &> /dev/null & 3 | -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/README.MD -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/cli.js -------------------------------------------------------------------------------- /images/processing1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/images/processing1.svg -------------------------------------------------------------------------------- /images/processing2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/images/processing2.svg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/index.html -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/package.json -------------------------------------------------------------------------------- /renderer/git.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/renderer/git.js -------------------------------------------------------------------------------- /renderer/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/renderer/main.js -------------------------------------------------------------------------------- /renderer/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/renderer/ui.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/renovate.json -------------------------------------------------------------------------------- /vendor/bootstrap/css/bootstrap-3.3.7.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/vendor/bootstrap/css/bootstrap-3.3.7.min.css -------------------------------------------------------------------------------- /vendor/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/vendor/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vendor/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/vendor/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/vendor/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vendor/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/vendor/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vendor/bootstrap/js/bootstrap-3.3.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/vendor/bootstrap/js/bootstrap-3.3.7.min.js -------------------------------------------------------------------------------- /vendor/debian.dict-8.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/vendor/debian.dict-8.7.txt -------------------------------------------------------------------------------- /vendor/jquery.factory-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jspenguin2017/SimpleGitGUI/HEAD/vendor/jquery.factory-3.2.1.min.js --------------------------------------------------------------------------------