I want to delete my repo but I want to make sure all my changesets have been pushed. git log origin..HEAD
and git log origin/master..master
both show nothing. However, when I try git push
, I get:
To remote-repo
! [rejected] master -> master (non-fast-forward)
error: failed to push some refs to '/van/work/nms/esteras/cmpt-bitArray-clean1.git'
To prevent you from losing history, non-fast-forward updates were rejected
Merge the remote changes (e.g. 'git pull') before pushing again. See the
'Note about fast-forwards' section of 'git push --help' for details.
If I have no local changes shouldn't it just say Everything up-to-date
? If I have outgoing changes how can I tell what they are? I may not care about them but I need to know what they are to decide.