I do not want to commit it
In fact, git stash works by making two attempts (sometimes) three, so if you hid your work, you did it, perhaps without even knowing it. But in most cases there is nothing to do with temporary fixation. Just add the current job and then do a temporary commit with:
git commit -m 'WIP'
Then you can push your branch to the repository, and this should be backup. When you return to finish the job, you can change this temporary commit with:
git commit
Feel free to change the message to something more meaningful, but in any case, the WIP message can serve as a reminder.
If the branch you are working on can be transferred to other users, then you can direct your temporary-committed branch to another location as a backup, for example.
git push origin local_branch:some_other_location
source share