[Git Error] fatal: not a git repository (or any of the parent directories): .git
2023. 2. 10. 20:41
형상관리/Git
fatal: not a git repository (or any of the parent directories): .git 발생 원인 현재 폴더에 git에 대한 정보를 담은 파일이 없어서 발생 해결방법 아래의 명령어 실행하기 git init git remote add origin (github 주소)
[git pull 에러] Please commit your changes or stash them before you merge
2021. 5. 14. 20:56
형상관리/Git
Please commit your changes or stash them before you merge 각자의 브랜치에서 작업을 할때, master브랜치 pull이 안받아지고 위의 에러가 뜨는 경우 👇 git pull origin [각자 브랜치명] git stash git pull origin master 🔥 이때 만약 수정사항이 있다면 날아갈 수 있으니 따로 저장해놓기 🔥