Closed aduh95 closed 2 years ago
thanks, Il try it out on one of the next merged PRS
@aduh95 added this, https://github.com/nodejs/node-core-test/wiki/How-this-repo-is-mantained
https://github.com/nodejs/node-core-test/pull/34/commits/8b5a21424038788a6b6caf29eb0bb88a36897198 is not semver-minor, it should be fix:
, not feat:
.
https://github.com/nodejs/node-core-test/pull/34/commits/5270582864c043eb51447cba6146e707ca002b33 should use fix(doc): copyedit `README.md`
as commit title imo.
Will fix later
It looks like you used -x
too many times, the (cherry picked from commit …)
has been duplicated in both commit messages.
FWIW, when you only want to amend the commit messages, I find it easier to use git rebase
git fetch https://github.com/nodejs/node-core-test.git main
git rebase FETCH_HEAD -i -S # it should open a text editor, you can replace `pick` with
# `reword` in front of the commits you want to amend.
thansk @aduh95 !
I guess it would deserve to be documented somewhere. How I am doing it: