1
0
mirror of https://github.com/k88hudson/git-flight-rules.git synced 2025-03-10 12:48:43 -03:00

Change the command to minimize side effects

This commit is contained in:
Filipp Pirozhkov 2017-11-10 19:18:27 +03:00
parent 88e905a4c2
commit 545a53e808

View File

@ -132,7 +132,7 @@ In order to remove a file from a commit, do the following:
```sh ```sh
$ git checkout HEAD^ myfile $ git checkout HEAD^ myfile
$ git add -A $ git add myfile
$ git commit --amend $ git commit --amend
``` ```