ZANARDI Bruno

Software Developper

About
Resume

Git Blog

Git command `rm`

Definition

Remove files from the working tree and from the index.

Basic usage

Remove file content from index and working directory

$ git rm <file>

Remove multiple files content from index and working directory

$ git rm <file_1> <file_2> <file_3> ...