#リモートブランチに対して、ローカルブランチがいくらか進んでいて、その変更内容をリモートにpushしていない状況
$git status
On branch develop
Your branch is ahead of 'origin/develop' by 2 commits.
(use "git push" to publish your local commits)
nothing to commit, working tree clean
現在のdevelop
がリモートのdevelopであるorigin/develop
より2コミット進んでいるという意味
###ローカルブランチの更新内容をリモートに反映させたい場合
$ git push origin
より詳細に指定する場合は、
$ git push origin develop:develop
###リモートブランチの内容に合わせたい場合
$ git reset -hard origin/develop
###コミットをなかったことにしたい場合
$ git reset --hard origin/develop