My project has a remote and local synchronized repository.
So, locally I have everything OK only my remote repository need to be updated.
How to push again the same commit to remote?
(I do everything in Intellij and one time pushed commit is no more visible there and of course not possible to push again)
Thanks for any help.
If the remote branch is completely deleted, You can directly push your local branch to remote
git push origin <local-branch-name>
or in Intellij while on your branch press Ctrl+Shift+k
and push
Every commit in your local branch should appear in remote