반응형 Developer/Troubleshooting4 git error fatal: refusing to merge unrelated histories git pull 명령어 실행 시 error인 refusing to merge unrelated histories 의원인 및 해결 방법에 대한 설명입니다. refusing to merge unrelated histories 발생원인git 서버의 commit 이력을 삭제했을 때 발생하는 error입니다. A 개발자가 reset 명령어로 이력을 삭제하고 git push --force 명령어로 강제 push 합니다. B 개발자가 pull 명령어로 원격 repository의 최신을 merge 할 때 발생합니다. reset 명령어는 링크를 참조하세요. https://aurumguide.tistory.com/109pull, push 명령어는 링크를 참조하세요. https://aurumguide.tistory.com.. 2024. 9. 19. MSSQL Database cannot be opened. It is in the middle of a restore. MSSQL database 백업 및 복원 작업 시 복원 중 상태일 때 해결 방법입니다. It is in the middle of a restore 원인백업할 때 전체 백업, 증분 백업, 로그 백업한 후 복원할 때 반대의 순서대로 복원 못 하는 경우 발생합니다.백업할 때 WITH NORECOVERY 옵션을 사용해서 같은 백업 파일로 계속 실행 시 발생합니다.database error messageMsg 927, Level 14, State 2, Line 16 Database 'aurumGuideDB' cannot be opened. It is in the middle of a restore. Msg 3013, Level 16, State 1, Line 16 BACKUP LOG is terminating a.. 2024. 9. 7. error: src refspec main does not match any 에러 해결 github에서 remote add 연결 시 main does not match any 해결 방법에 관해서 설명하려고 합니다. src refspec main does not match any 발생원인github에서 remote add 연결 시 default 연결을 지정하지 않아서 발생하는 문제입니다. 2단계로 명령어를 실행하면 해결할 수 있습니다. 처음 발생할 때 한 번에 지정하면 에러는 해결할 수 있습니다. 에러가 계속 발생하면은 게시글 답변으로 남겨주세요. src refspec main does not match any 해결 방법1. 첫 번째 확인 및 적용.요즘 사용하지 않는 master 브랜치를 사용하는 경우는, main 변경해 주세요.설정 확인 합니다.git config --list설정 변경 합니.. 2024. 9. 1. Need to specify how to reconcile divergent branches git 설치 후 여러 개발자가 사용하다 보면 발생하는 Need to specify how to reconcile divergent branches 이야기하려고 합니다. Need to specify how to reconcile divergent branches 발생git을 사용한다면 여러 개발자가 같은 git 서버를 사용하는데 최신을 받지 않은 상태에서 다른 개발자가 push 한 경우 발생합니다.그림으로 설명하면 바로 이해할 수 있습니다. Need to specify how to reconcile divergent branches 원인은?원인은 local과 remote의 파일 싱크가 되지 않아 브랜치가 갈라졌다는 경고입니다.즉, Git 프로그램에 싱크가 맞지 않는 파일에 대해서 Merge 할 건지, re.. 2024. 8. 29. 이전 1 다음 반응형