Forrest logo
back to context overview

git-am

List of commands for git-am:

  • git-am:tldr:40f98 git-am: Apply and commit changes following a local patch file.
    $ git am ${filename-patch}
    try on your machine
    explain this command
  • git-am:tldr:881f6 git-am: Abort the process of applying a patch file.
    $ git am --abort
    try on your machine
    explain this command
  • git-am:tldr:f6cb7 git-am: Apply and commit changes following a remote patch file.
    $ curl -L ${https:--example-com-file-patch} | git apply
    try on your machine
    explain this command
  • git-am:tldr:fd876 git-am: Apply as much of a patch file as possible, saving failed hunks to reject files.
    $ git am --reject ${filename-patch}
    try on your machine
    explain this command
back to context overview