개발 공부/웹 개발
git error: unknown switch `e'
차정
2025. 1. 10. 12:58
https://stackoverflow.com/questions/75215273/git-reset-headn-results-in-error-unknown-switch-e
git reset HEAD@{n} results in error "unknown switch 'e'"
I issued the command: git reset HEAD@{2} and got an error: unknown switch `e'. What's happening?
stackoverflow.com
git stash apply stash@{0}
명령어가 안먹어서 검색해보니 윈도우는
git stash apply "stash@{0}"
이렇게해야한다는군요.
회사에서 작성하느라 이만.