-
Notifications
You must be signed in to change notification settings - Fork 355
DOC - Update documentation regarding formatting files #2057
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from 1 commit
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,8 +1,27 @@ | ||
| # Ignore formatting commits with `git blame` | ||
|
|
||
| When making commits that are strictly formatting/style changes (e.g., after running a new version of black or running pyupgrade after dropping an old Python version), add the commit hash to `.git-blame-ignore-revs`, so `git blame` can ignore the change. | ||
| Please follow these steps to avoid obscuring files history when making commits that are | ||
| strictly formatting/style changes (e.g., after running a new version of black or running | ||
| pyupgrade after dropping an old Python version). | ||
|
|
||
| 1. Create a new branch. | ||
| 2. Make any linting and formatting rules needed; either in the `pre-commit.config.yaml` | ||
| or in the `pyproject.toml` file. | ||
| 3. Commit your changes with the `--no-verify` flag to skip the pre-commit hooks. | ||
| 4. Run the pre-commit hooks manually with `tox run -e lint` or `pre-commit run --all-files`. | ||
| 5. Commit the linting and formatting changes. | ||
| 6. Open a PR with these changes. | ||
|
|
||
| ```{important} | ||
| This PR **must** be rebased-merged -- instead of the default squash-merge we | ||
trallard marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| currently follow -- so a repository admin needs to enable this setting in the | ||
| repository temporarily. | ||
| ``` | ||
|
|
||
| 7. Open a new PR adding the commit hashes of the formatting commits to the `.git-blame-ignore-revs` file. | ||
|
|
||
| For more details, see: | ||
|
|
||
| - https://git-scm.com/docs/git-config#Documentation/git-config.txt-blameignoreRevsFile | ||
| - https://github.com/pydata/pydata-sphinx-theme/pull/713 | ||
| - <https://git-scm.com/docs/git-config#Documentation/git-config.txt-blameignoreRevsFile> | ||
| - <https://github.com/pydata/pydata-sphinx-theme/pull/713> | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.