Add advice setting for pull request creation from forks - #1774
Open
be-student wants to merge 1 commit into
Open
Conversation
PawelLipski
reviewed
Sep 8, 2026
|
|
||
| ## New in git-machete 3.45.1 | ||
|
|
||
| - added: `advice.macheteCreateFromFork` git config key suppresses the fork warning in `github create-pr` and `gitlab create-mr` when set to `false` |
Collaborator
There was a problem hiding this comment.
PR looks okay! pls rebase & resolve the conflict
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes #1485.
Add
advice.macheteCreateFromFork, enabled by default, to suppress the repeated fork warning when set tofalse.The shared creation path applies the setting to both
github create-prandgitlab create-mr; repository selection, remote checks, and PR/MR creation remain unchanged.Document the setting in both commands, regenerate CLI help and the man page, and add a release note.
Validation:
tox -e py -- tests/test_fork_advice.py tests/test_github_create_pr.py tests/test_gitlab_create_mr.py -n 2: 43 passed.tox -e pep8,isort,mypy,py-docs: passed; mypy checked 112 source files.tox -e sphinx-man,sphinx-html,py-docs-check: passed.AGENTS.md, flake8 and vulture are left to CI.Tests use local Git repositories and the existing mocked hosting APIs, with complete command-output assertions for both providers and all three setting states.