Qwas Notes
Attachments
History
Blame
View Source
Documentation
About An Otter Wiki
Toggle dark mode
Login
Home
A - Z
Changelog
Page Index
git
patch
worktree
git
patch
Blame
590877
Qwas
2024-04-29 12:10:35
1
# git patch
2
3
用最新的head 创建补丁
4
5
```sh
6
git
format-patch
-1
7
```
8
9
应用补丁
10
11
```sh
12
git
am
./patch.diff
13
```