Git pull works does not show any updates:
sh-3.2$ git pull Already up-to-date.
When I press git, I get an error:
sh-3.2$ git push --tags To user@example.com :some/git/repo ! [rejected] DEVEL_BLEEDINGEDGE -> DEVEL_BLEEDINGEDGE (non-fast-forward) error: failed to push some refs to ' user@example.com :some/git/repo' To prevent you from losing history, non-fast-forward updates were rejected Merge the remote changes (eg 'git pull') before pushing again. See the 'Note about fast-forwards' section of 'git push --help' for details.
Rebasing gives the same thing:
sh-3.2$ git pull --rebase Current branch devel is up to date.
The DEVEL_BLEEDINGEDGE tag is used in my daily auto-build scripts, every time I need to deploy some new things with these scripts, I move this tag with:
git tag -f DEVEL_BLEEDINGEDGE
So why can't I get my tag back?
I get this error from time to time for other tags that I don't move too.
source share