The difference between git and .patch packages

I am working on a project with a git repository and I want to export the latest changes I made and send them by email.

I need to know the difference between creating a git package and creating a .patch file, and which is better?

I use Tortoise Git and it gives me the ability to create a .patch file and it does not give me the ability to create a git package, which means the .patch file is better

thank

+2
source share
1 answer

An incremental package will depend on and apply to another previously created package.

, , .
, , , :

.
( git format-patch).
, .

+1

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


All Articles