https://github.com/concon121/atom-commit-templates
Set custom commit templates in the Atom UI
https://github.com/concon121/atom-commit-templates
Last synced: 3 months ago
JSON representation
Set custom commit templates in the Atom UI
- Host: GitHub
- URL: https://github.com/concon121/atom-commit-templates
- Owner: concon121
- License: mit
- Created: 2017-09-19T20:10:02.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-01T21:57:42.000Z (over 8 years ago)
- Last Synced: 2024-12-31T10:33:21.638Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://atom.io/packages/atom-commit-templates
- Size: 24.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# atom-commit-templates
[](https://api.travis-ci.org/concon121/atom-commit-templates)
[](https://www.codacy.com/app/connor-bray/atom-commit-templates?utm_source=github.com&utm_medium=referral&utm_content=concon121/atom-commit-templates&utm_campaign=Badge_Grade)
[](https://codeclimate.com/github/concon121/atom-commit-templates)
[](https://codeclimate.com/github/concon121/atom-commit-templates)
[](https://atom.io/packages/atom-commit-templates)
Easily set custom commit templates from the Atom UI
## Setting a Git Commit Template
To enable your git commit template to take effect, this package writes to a ```.gitcommit``` file in your home directory, and updates your git configuration to use this file as a commit template e.g.
```
git config --global commit.template ~/.gitcommit
```
#### Keyboard Shortcuts
- ```ctrl-shift-alt-t``` on Windows and Linux
- ```cmd-shift-alt-t``` on OSX
- ```Atom Commit Templates: Set Commit Template``` from the command palette
#### Input Dialog

#### Commit Message Automatically Populated

## Clearing the Commit Template
Removes the current commit template.
#### Keyboard Shortcuts
- ```ctrl-shift-alt-c``` on Windows and Linux
- ```cmd-shift-alt-c``` on OSX
- ```Atom Commit Templates: Clear Commit Template``` from the command palette
## Goes well with
- [Git Plus](https://atom.io/packages/git-plus) - Git commands without the terminal!
- [Git Control](https://atom.io/packages/git-control) - A git GUI directly in Atom
## Kudos
Kudos to the following, for making my life easier!
- [atom-input-dialog](https://github.com/aki77/atom-input-dialog)