can git be used for version control on non text documents such as word doc or xls etc
Git is agnostic in the sense that it doesn’t matter which files you put under version control. When git can’t recognise the type of a file it just treats it as binary data for versioning purposes; so diff etc. will just state that the files are different by a number of bytes. So to answer … Read more