https://github.com/ignatvilesov/git-templates
Useful templates for daily git workflow
https://github.com/ignatvilesov/git-templates
git github
Last synced: about 2 months ago
JSON representation
Useful templates for daily git workflow
- Host: GitHub
- URL: https://github.com/ignatvilesov/git-templates
- Owner: ignatvilesov
- License: mit
- Created: 2022-02-25T17:33:00.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-25T17:55:41.000Z (over 4 years ago)
- Last Synced: 2025-06-30T15:50:45.178Z (12 months ago)
- Topics: git, github
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# git-templates
Provides some useful templates for daily git workflow.
## Git default commit message
To set a default template for git commit message please use the following command:
```bash
git config --global commit.template PATH_TO_THE_REPO/.gitmessage
```
## Pull request template
To set a default pull request template on GitHub please copy `.github/pull_request_template.md` into `YOUR_REPOSITORY/.github/pull_request_template.md`.
## Inspired by
1. [Using Git Commit Message Templates to Write Better Commit Messages](https://gist.github.com/lisawolderiksen/a7b99d94c92c6671181611be1641c733)
2. [Conventional Commits 1.0.0](https://www.conventionalcommits.org/en/v1.0.0/#summary)
3. [Contributing to Angular](https://github.com/angular/angular/blob/22b96b9/CONTRIBUTING.md#-commit-message-guidelines)