We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I was testing out a way to use git notes to maintain a changelog (https://dev.to/leehambley/effortlessly-maintain-a-high-quality-change-log-with-git-notes-4bm5)
So I used the plugin to set
<remote.origin.fetch>+refs/notes/changelog:refs/notes/changelog</remote.origin.fetch>
But this overwrote the default
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
So I need an implementation of
git config [<file-option>] [--type=<type>] --add name value
Instead of
git config [<file-option>] [--type=<type>] [--fixed-value] [--show-origin] [--show-scope] [-z|--null] name [value [value-pattern]]
Maybe it could be done like this:
<remote.origin.fetch add="">+refs/notes/changelog:refs/notes/changelog</remote.origin.fetch>
The text was updated successfully, but these errors were encountered:
Hi there, thank you for the suggestion. This definitely sounds like it needs to go in.
Sorry, something went wrong.
No branches or pull requests
I was testing out a way to use git notes to maintain a changelog (https://dev.to/leehambley/effortlessly-maintain-a-high-quality-change-log-with-git-notes-4bm5)
So I used the plugin to set
But this overwrote the default
So I need an implementation of
Instead of
Maybe it could be done like this:
The text was updated successfully, but these errors were encountered: