DEV Community

Clarice Bouwer
Clarice Bouwer

Posted on

How to recover a file from another branch in Git

git show branch:filename.ext > path/to/file.ext
Enter fullscreen mode Exit fullscreen mode

Where branch can be any ref including a branch name, tag, HEAD.

Thanks to this Stack Overflow reference.

Top comments (0)