I'm trying to track modified files on a live website with GIT, I have deployed a non-bare repository on the website, with a post-receive hook.
Is it possible to see what changes have been made in the remote's working copy without committing them?
I'll give an example to clarify things:
- I have a live installation of Wordpress with a repository on its root.
- I push changes from local repository, but Wordpress itself has made changes to remote's files, so the push won't affect these files since they have uncommitted changes.
- I would like to see what changes has Wordpress made so I can stage them or not.