1
0
mirror of https://github.com/k88hudson/git-flight-rules.git synced 2025-06-16 21:01:45 -03:00

Fix "gim" typo (#331)

This commit is contained in:
Jared Culp
2021-09-22 16:37:55 -04:00
committed by GitHub
parent 65bd59262f
commit 5f1db99e49
2 changed files with 2 additions and 2 deletions

View File

@ -248,7 +248,7 @@ A patch can be viewed and even edited by the recipient and applied using `git am
For example, to create a patch based on the previous commit you would run `git format-patch HEAD^` which would create a .patch file called something like 0001-My-Commit-Message.patch.
To apply this patch file to your repository you would run `gim am ./0001-My-Commit-Message.patch`.
To apply this patch file to your repository you would run `git am ./0001-My-Commit-Message.patch`.
Patches can also be sent via email using the `git send-email` command. For information on usage and configuration see: https://git-send-email.io