git 에러
-
1) 문제 기존의 깃허브 저장소(repository)가 있다. 로컬에서 init 하고 기존의 깃허브 저장소에 접속하고 싶다. 간단한 소스 파일을 만들고 push를 하려고 하는 상황이었다. git push origin master 을 하면 위에와 같은 에러가 발생. pull (fetch+merge) 를 하고 다시 push 하면 될 것 같았지만 역시나 같은 에러 발생. 2) 해결 git pull origin master --allow-unrelated-histories 로 해결 할 수 있다. 3) 원인 위의 명령어 뜻 풀이를 하면 관계가 없는 내역을 허락하다 정도로 해석 할 수 있는데 기존에 있는 저장소에 있는 프로젝트와 새로 만든 프로젝트가 다른 프로젝트라고 인식되어서 발생한 것인데 이를 병합할 수 있게 ..
git 에러] fatal: refusing to merge unrelated histories feat. push 가 안될 때.1) 문제 기존의 깃허브 저장소(repository)가 있다. 로컬에서 init 하고 기존의 깃허브 저장소에 접속하고 싶다. 간단한 소스 파일을 만들고 push를 하려고 하는 상황이었다. git push origin master 을 하면 위에와 같은 에러가 발생. pull (fetch+merge) 를 하고 다시 push 하면 될 것 같았지만 역시나 같은 에러 발생. 2) 해결 git pull origin master --allow-unrelated-histories 로 해결 할 수 있다. 3) 원인 위의 명령어 뜻 풀이를 하면 관계가 없는 내역을 허락하다 정도로 해석 할 수 있는데 기존에 있는 저장소에 있는 프로젝트와 새로 만든 프로젝트가 다른 프로젝트라고 인식되어서 발생한 것인데 이를 병합할 수 있게 ..
2020.01.25 -
error: The following untracked working tree files would be overwritten by merge: .gitignore .idea/misc.xml .idea/modules.xml gitPractice.iml Please move or remove them before you merge. Aborting 처음 init 을 하고 이렇게 나오는데 git pull origin master 을 해도 땡겨올 수 없다고 한다. 해결방법은 의외로 간단하다. git clean -d -f -f
git 에러] error : untracked working tree files overwritten by merge 해결방법error: The following untracked working tree files would be overwritten by merge: .gitignore .idea/misc.xml .idea/modules.xml gitPractice.iml Please move or remove them before you merge. Aborting 처음 init 을 하고 이렇게 나오는데 git pull origin master 을 해도 땡겨올 수 없다고 한다. 해결방법은 의외로 간단하다. git clean -d -f -f
2020.01.24 -
pull 혹은 push 를 하는 도중에 원격 저장소 에러가 떴다! *** 에러 과정 *** 1) pull 명령어를 사용 git pull master 2) 에러발생 메시지 git pull master fatal: 'master' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 3) git remote -v 를 통한 원격 저장소를 확인! june git@github.com:--------.git (fetch) june git@github.com:--------.git..
git] 원격 저장소 연결 에러 'origin' does not appear to be a git repositorypull 혹은 push 를 하는 도중에 원격 저장소 에러가 떴다! *** 에러 과정 *** 1) pull 명령어를 사용 git pull master 2) 에러발생 메시지 git pull master fatal: 'master' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. 3) git remote -v 를 통한 원격 저장소를 확인! june git@github.com:--------.git (fetch) june git@github.com:--------.git..
2020.01.22