mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2026-09-24 15:00:31 +08:00
* refactor: clean to roadmap content * refactor: move shared helpers into scripts/lib
8 lines
617 B
Markdown
8 lines
617 B
Markdown
# Git Patch
|
|
|
|
In Git, a patch is a file that contains a set of changes made to a project's codebase. It's essentially a diff (difference) file that shows the modifications between two versions of a commit or a branch. However, despite its usefulness in certain contexts, the use of Git patches has declined somewhat with the advent of more modern and efficient ways to manage code changes.
|
|
|
|
Visit the following resources to learn more:
|
|
|
|
- [@article@Git Patch](https://www.gitkraken.com/learn/git/git-patch)
|
|
- [@article@How to generate and apply patches with git?](https://gist.github.com/nepsilon/22bc62a23f785716705c) |