Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 470 Bytes

import-only-one-file-from-a-stash.md

File metadata and controls

15 lines (10 loc) · 470 Bytes

Import Only One File From A Stash

git에서는 commit SHA만 있으면, 그 branch에서 한 파일만 가져오는 것 이 가능합니다. 이와 같은 개념으로, 한 stash에서 하나의 파일만 가져오는 것 또한 가능합니다.

  • 특정 commit에서 한 파일 가져오기

    git checkout ###### -- filename
  • 특정 stash에서 한 파일 가져오기

    git checkout stash@{1} -- filename