I am trying to push after merging a temporary branch into the master. But 'git push' is not doing its job. It does all the local processing but gets stuck at the last step. How can I resolve this?
I did the following:
git checkout master
git merge --no-ff dev_08_15
git commit -a -m "dev_08_15 Merge commit"
git push origin master
And now git is stuck at this place. Below is the output I get.
Counting objects: 61, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (19/19), done.
Writing objects: 100% (28/28), 2.20 KiB, done.
Total 28 (delta 14), reused 0 (delta 0)
I can pull the changes which others are pushing. But I can't push any of my changes now.