Elektrine lite

← Feed

@towerful@programming.dev

Post #3380759

2026-06-23 11:20 UTC

Yeh I use git (git commit --amend)

Replies (3)

  • @Gonzako@lemmy.world 2026-06-23 11:42

    Would this also trigger (git rev-parse) to change? I have CI/CD listening to changes on the master branch

    Open ##3380876

  • @wpb@lemmy.world 2026-06-24 10:21

    If you’re comfortable with whatever text editor vim uses, give git rebase -i a try.

    Open ##3388494

  • @Archr@lemmy.world 2026-06-24 16:15

    git commit --amend --no-edit and git push --force-with-lease No-edit skips opening an editor for the commit message and just refuses the same message. Force-with-lease will force push but only if your local is not missing commits that remote has. Ie other people haven’t pushed anything since you last pulled.

    Open ##3390663