I have a file in my local repo that I want to compare against a new version of the same file in another repo. I tried to do something like:
git diff origin/master https://github.com/ProjextX/prox.git client/src/main/ber/mainCode.java
but gave me fatal: Invalid object name 'https'
The file in prox.git
is located in the same directory client/src/main/ber
Is the command that I'm using correct? If not, what is the best command to compare?