committed icon indicating copy to clipboard operation
committed copied to clipboard

Nitpicking commit history since beabf39

Results 33 committed issues
Sort by recently updated
recently updated
newest added

Right now, we just say something failed. We don't tell people what line, what commit ,etc.

enhancement

See https://github.com/coala/coala-bears/blob/master/bears/vcs/git/GitRevertInspectBear.py

question

Expand the autosquash prefixes from just `fixup!` to now include `squash!` and `amend!`. These are the prefixes supported by default when using [Git's `--autosquash`](https://git-scm.com/docs/git-rebase#Documentation/git-rebase.txt---autosquash). To keep the commits atomic as...

If fixups are allowed, then the remainder of the commit message ought to either be either a previous commit's subject line, or a hash: > If a commit message starts...

The `fixup!` commit is just one instance of the more general autosquash feature as described in [Git's `--autosquash` docs](https://git-scm.com/docs/git-rebase#Documentation/git-rebase.txt---autosquash) This renames instances of 'fixup' to 'autosquash', while creating aliases to...

Some problems: - Local development might involve `WIP` but those should be prevented in production - pre-commit losing the entire commit message due to a minor problem that could be...

enhancement

It would appear to me that the following combination of configuration options ```toml style = "conventional" no_fixup = false ``` Should allow for fixup to conventional commits. Unfortunately, this is...

enhancement
question

## Problem description In `committed 1.0.20`, using the following configuration: ```toml style = "conventional" subject_capitalized = false allowed_types = ["feat"] ``` Let the following message: ``` feat: always use a...

https://json-schema.org/draft-07/draft-handrews-json-schema-validation-01#rfc.section.7.3.8

Firstly, loving Committed 🚀 I noticed that when Committed is set to check for the imperative mood, there is one edge case which it doesn't pick up correctly due to...

bug