Git - does this image work?

im actually works with git, I add the whole directory where I build the website without problems. how git handle images?

+4
source share
2 answers

Version control software can handle binary files very well, but some of them will not work. The main limitation is that you cannot automatically merge conflicts. In addition, you cannot create file locks in Git , so conflicts will eventually occur, and they will have to be resolved manually before push occurs.

+5
source

Like binary files. WARNING: it cannot automatically merge these files.

0
source

Source: https://habr.com/ru/post/1310372/


All Articles