Skydio / revup

Effortlessly create and manage pull requests without changing branches. Powers a stacked diffs workflow with python and git "plumbing" commands.
https://github.com/Skydio/revup
MIT License
310 stars 61 forks source link

revup without modifying commit message? #88

Closed myocytebd closed 1 year ago

myocytebd commented 1 year ago

Is your feature request related to a problem? Please describe. Commit log would be cleaner if revup metadata is moved out of commit message.

Describe the solution you'd like Local: maybe store in git notes?
Github: maybe store in comments?

Describe alternatives you've considered A clear and concise description of any alternative solutions or features you've considered.

brian-kubisiak-skydio commented 1 year ago

revup upload has the --trim-tags option which should accomplish this. The local commit (in your topic stack) still has the tags, but the commits pushed to github (and the PR message) do not.

You can make this the default by adding to your revup config:

[upload]
trim_tags = True
myocytebd commented 1 year ago

Good to know this feature.