git – Your branch is ahead of ‘origin/master’ by 1 commit

You cannot push anything that hasn’t been committed yet. The order of operations is: Make your change. git add – this stages your changes for committing git commit – this commits your staged changes locally git push – this pushes your committed changes to a remote If you push without committing, nothing gets pushed. If you commit without … Read more