DEV Community

Cover image for Retornando um arquivo para a versão anterior
Oseias Nascimento
Oseias Nascimento

Posted on

Retornando um arquivo para a versão anterior

Retornando entre branchs

  • git checkout dev -- caminho/relativo/para/o/arquivo.file

Retornando entre commits

  • Primeiro git log -- relative_path\file.name
  • Verificar os commits envolvidos nesse arquivo e pegar o hash
  • Fazer checkout do arquivo git checkout hashid -- file_with_path

Top comments (0)