Well this was really nice explanation about git patches! Good, in depth content and well explained!
https://www.youtube.com/watch?v=eG9oAroMcPk
Highly recommend this YouTube channel (@BriefVid) as it has some quality content.
Well this was really nice explanation about git patches! Good, in depth content and well explained!
https://www.youtube.com/watch?v=eG9oAroMcPk
Highly recommend this YouTube channel (@BriefVid) as it has some quality content.
What kind of trick(s) you use to make the git commit messages nicely aligned to N characters when merging a PR in GitHub?
I sometimes copy to VS Code which has the "editor.ruler" option and manually edit the text, but surely someone has come up with something more convenient?
#Git tip
a
main----*
\
\c d
*----*fix
\
\e f
*----*feat
to this
a
main----*
|\
| \c d
| *----*fix
|
\ e f
\*----*feat
$ git switch feat
$ git rebase --onto main fix feat