├── .appcast.xml ├── .babelrc ├── .editorconfig ├── .eslintrc.yml ├── .github └── CONTRIBUTING.md ├── .gitignore ├── .gitsketchrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── Resources ├── branches.css ├── branches.html ├── branches.js ├── preferences.css ├── preferences.html └── preferences.js ├── assets ├── delete.svg ├── icon.png └── icons │ ├── branches.png │ ├── commit.png │ ├── pull.png │ └── push.png ├── docs ├── FAQ.md ├── README.md ├── getting-started.md ├── git-commands.md ├── git-lfs.md ├── keyboard-shortcut.md └── sketchignore.md ├── example ├── .exportedArtboards │ └── example │ │ ├── Artboard 1@0.5x.png │ │ └── Rectangle@0.5x.png ├── .sketchignore ├── ScreenCast.gif ├── ScreenShotBad.png ├── ScreenShotNice.png ├── example-boards.md └── example.sketch ├── logo.png ├── package.json ├── src ├── commands │ ├── Add.js │ ├── Branches.js │ ├── Commit.js │ ├── Export.js │ ├── Init.js │ ├── OpenTerminal.js │ ├── Preferences.js │ ├── Pull.js │ ├── Push.js │ └── autoExportOnSave.js ├── common.js ├── exportArtboards.js ├── manifest.json └── preferences.js └── webpack.skpm.config.js /.appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/.appcast.xml -------------------------------------------------------------------------------- /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/.eslintrc.yml -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitsketchrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/.gitsketchrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/README.md -------------------------------------------------------------------------------- /Resources/branches.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/Resources/branches.css -------------------------------------------------------------------------------- /Resources/branches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/Resources/branches.html -------------------------------------------------------------------------------- /Resources/branches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/Resources/branches.js -------------------------------------------------------------------------------- /Resources/preferences.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/Resources/preferences.css -------------------------------------------------------------------------------- /Resources/preferences.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/Resources/preferences.html -------------------------------------------------------------------------------- /Resources/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/Resources/preferences.js -------------------------------------------------------------------------------- /assets/delete.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/assets/delete.svg -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/icons/branches.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/assets/icons/branches.png -------------------------------------------------------------------------------- /assets/icons/commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/assets/icons/commit.png -------------------------------------------------------------------------------- /assets/icons/pull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/assets/icons/pull.png -------------------------------------------------------------------------------- /assets/icons/push.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/assets/icons/push.png -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/docs/getting-started.md -------------------------------------------------------------------------------- /docs/git-commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/docs/git-commands.md -------------------------------------------------------------------------------- /docs/git-lfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/docs/git-lfs.md -------------------------------------------------------------------------------- /docs/keyboard-shortcut.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/docs/keyboard-shortcut.md -------------------------------------------------------------------------------- /docs/sketchignore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/docs/sketchignore.md -------------------------------------------------------------------------------- /example/.exportedArtboards/example/Artboard 1@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/example/.exportedArtboards/example/Artboard 1@0.5x.png -------------------------------------------------------------------------------- /example/.exportedArtboards/example/Rectangle@0.5x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/example/.exportedArtboards/example/Rectangle@0.5x.png -------------------------------------------------------------------------------- /example/.sketchignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/example/.sketchignore -------------------------------------------------------------------------------- /example/ScreenCast.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/example/ScreenCast.gif -------------------------------------------------------------------------------- /example/ScreenShotBad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/example/ScreenShotBad.png -------------------------------------------------------------------------------- /example/ScreenShotNice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/example/ScreenShotNice.png -------------------------------------------------------------------------------- /example/example-boards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/example/example-boards.md -------------------------------------------------------------------------------- /example/example.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/example/example.sketch -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/Add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/commands/Add.js -------------------------------------------------------------------------------- /src/commands/Branches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/commands/Branches.js -------------------------------------------------------------------------------- /src/commands/Commit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/commands/Commit.js -------------------------------------------------------------------------------- /src/commands/Export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/commands/Export.js -------------------------------------------------------------------------------- /src/commands/Init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/commands/Init.js -------------------------------------------------------------------------------- /src/commands/OpenTerminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/commands/OpenTerminal.js -------------------------------------------------------------------------------- /src/commands/Preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/commands/Preferences.js -------------------------------------------------------------------------------- /src/commands/Pull.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/commands/Pull.js -------------------------------------------------------------------------------- /src/commands/Push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/commands/Push.js -------------------------------------------------------------------------------- /src/commands/autoExportOnSave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/commands/autoExportOnSave.js -------------------------------------------------------------------------------- /src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/common.js -------------------------------------------------------------------------------- /src/exportArtboards.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/exportArtboards.js -------------------------------------------------------------------------------- /src/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/manifest.json -------------------------------------------------------------------------------- /src/preferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/src/preferences.js -------------------------------------------------------------------------------- /webpack.skpm.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/git-sketch-plugin/HEAD/webpack.skpm.config.js --------------------------------------------------------------------------------