
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 machineexplain this command
-
git-am:tldr:881f6 git-am: Abort the process of applying a patch file.$ git am --aborttry on your machineexplain 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 applytry on your machineexplain 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 machineexplain this command