You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, diffing two git versions of the same file is really cumbersome (git show $rev1:./foo.brd > old.brd ; git show $rev2:./foo.brd > new.brd ; eagle-diff old.brd new.brd).
The text was updated successfully, but these errors were encountered:
I guess it'd have to create a temporary directory somewhere, put the images there, display the images somehow (I don't think there's a good portable way to display multiple images), and remove the directory when whatever image viewer was used exits.
That works. It's not as nice as straight git diff. Using the .gitattributes from the other repo works, but we'd need to make a wrapper script that takes a fixed set of 7 parameters. I couldn't work out a neat way around that.
Right now, diffing two git versions of the same file is really cumbersome (git show $rev1:./foo.brd > old.brd ; git show $rev2:./foo.brd > new.brd ; eagle-diff old.brd new.brd).
The text was updated successfully, but these errors were encountered: