Hi Parul, > Can someone help me, how can I check what all changes are done from 2.26 to > 2.27. > I do not know how to use git. > I want to know what all changes are done for x86-64.
I am not a git expert either, but this worked for me (when run at the top level of my cloned binutils repository): git diff origin/binutils-2_26-branch..origin/binutils-2_27-branch This did produce lots of output however (~34 megabytes!) so you may want to restrict it to just those files you are interested in. For example: git diff origin/binutils-2_26-branch..origin/binutils-2_27-branch -- bfd/elf32-i386.c bfd/elf64-x86-64.c will show you just the changes to the elf32-i386.c and elf64-x86-64.c files. Cheers Nick _______________________________________________ bug-binutils mailing list bug-binutils@gnu.org https://lists.gnu.org/mailman/listinfo/bug-binutils