I'm facing some difficulties while trying to understand why git push command does absolutely nothing.
It's not stuck, and not hanging, it's just executing the command and finishes after 1 sec with no feedback and no changes being sent to the remote.
[suse1:/workarea]> git push origin master
[suse1:/workarea]>
When I'm trying to use verbose flag, this is the output:
[suse1:/workarea]>git push --verbose
Pushing to https://github.company.com/projects/TicketService.git
[suse1:/workarea]>
Git status shows that there is 1 commit ahead of master:
[suse1:/workarea]>git status
On branch master
Your branch is ahead of 'origin/master' by 1 commit.
(use "git push" to publish your local commits)
nothing to commit, working tree clean
I'm trying to push the changes to the origin, from a linux server SUSE Linux Enterprise Server 12 SP5
Any idea what could it be?