Forrest logo
back to the git tool

git-obliterate:tldr:c4e14

git-obliterate: Erase the existence of specific files.
$ git obliterate ${file_1 file_2 ---}
try on your machine

The command "git obliterate ${file_1 file_2 ---}" is not a valid Git command.

However, based on the context provided, it seems like you are trying to list multiple files that you want to obliterate using Git. In that case, the correct command would be:

git rm file_1 file_2 ...

The git rm command is used to remove files from Git's tracked files list. By specifying the filenames after the git rm command, you can remove multiple files at once.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the git tool