DEV Community

ダニエリ for WoMakersCode

Posted on • Edited on

6

[Tutorial Git] git rm: Excluindo arquivo do repositório

Para apagar um arquivo no repositório Git, fazemos



$ git rm <nome do arquivo>


Enter fullscreen mode Exit fullscreen mode
  • $ indica que você deve usar o usuário comum para fazer essa operação.
  • rm, do inglês remove, para remover o arquivo.
  • digite o nome do arquivo sem os sinais < >.

Exemplo:

Vamos deletar o arquivo playstation.html do nosso repositório.

deletando arquivo do working directory

Para finalizar, basta fazer o commit dessa remoção.

Caso você tenha excluido o arquivo de outra maneira, ao digitar git status, o Git irá informar sobre o arquivo.

Exemplo:

Excluímos o arquivo gba.html diretamente no diretório.

arquivo excluído

Então, para registrar essa exclusão, podemos usar os comandos git add ou git rm. Assim, temos:

registrando a exclusão do arquivo no git

Em seguida, fazemos o commit.

Para excluir uma pasta/diretório não vazio, basta incluir a flag -r, de recursividade, para incluir toda a árvore do diretório. Assim:



$ git rm -r <nome do arquivo>


Enter fullscreen mode Exit fullscreen mode

Billboard image

Monitor more than uptime.

With Checkly, you can use Playwright tests and Javascript to monitor end-to-end scenarios in your NextJS, Astro, Remix, or other application.

Get started now!

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay