Is there a way to do a git diff between staged/unstaged changes with a remote branch say origin/branch1. Is there a similar option with git difftool?
OR
Is there a way to diff changes in my local file system (forget about staged or unstaged) with git remote branch? All I want is to check my changes before committing them. This is really useful once I am done pulling in changes and resolving conflicts with a remote branch.
Just run:
(you may use
--staged
here if you prefer; I use--cached
becausegit rm
has--cached
but not--staged
). This shows you a way to changeorigin/branch1
to match what you have staged:If you want to see a way to change what you have staged to match
origin/branch1
, add-R
(reverse the order):As you can see, these are very different from comparing without
--cached
aka--staged
, but this too is easy:These same options (
--cached
or not, and using any name to identify any commit) are also available withgit difftool
.It's worth remembering here that there aren't really any remote branches, in Git. There are commits that you have, and you have names for some of your commits. One possible form of name is a remote-tracking name like
origin/branch1
. Some people like to call this a "remote branch", but it's just your own (local) Git's memory of whereorigin
'sbranch1
pointed some time ago, when you rangit fetch origin
and had your Git pick up their Git's branches.