How do we unstage staged files in Git? Say you want to unstage file1 in current directly. Here is the command.
$ git reset -- file1
If you need to unsage all files….
$ git reset
Tech Notes of Mine
How do we unstage staged files in Git? Say you want to unstage file1 in current directly. Here is the command.
$ git reset -- file1
If you need to unsage all files….
$ git reset