문제

Consider I've staged for committing a file (e.g. db/schema.rb) that I didn't intended to change. I need to do:

git reset db/schema.rb
git checkout db/schema.rb

Can I do it by single command?

도움이 되었습니까?

해결책

I tried this one and works well for me:

git checkout HEAD -- path

다른 팁

I just added this to my .zshrc / .bashrc

checkout() {
  git reset "*$1*"
  git checkout "*$1*"
} 

And then you can just do checkout <file> and you're all set.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top