79612907

Date: 2025-05-08 17:45:22
Score: 0.5
Natty:
Report link

If all you are trying to do is push your local commits, your best bet would be to stash your current working branch stages, push again, and then pop the stash.

git stash -u
git push
git stash pop

Since we popped the stash, we won't clutter up any local queues.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: MusicMan