Reputation: 4877
When I run git diff origin/r35.2..origin/r35.3 I get:
git diff origin/r35.2..origin/r35.3
fatal: bad revision 'origin/r35.2..origin/r35.3'
How do I escape the dots in the name?
Upvotes: 4
Views: 2099
Reputation: 1425
Escape with backslashes \.
\
git diff origin/r35\.2..origin/r35\.3
Upvotes: 9