[링크] git 사용시 “WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED” 오류 메시지에 대한 해결
ssh-keygen -R [git서버주소] 출처 https://kingsong.tistory.com/127
ssh-keygen -R [git서버주소] 출처 https://kingsong.tistory.com/127
(1) .gitignore가 추가되기 전에 존재하던 파일이라면 작동하지 않는다. git rm –cached -r [디렉토리] https://stackoverflow.com/questions/32384473/gitignore-not-ignoring-idea-path
git stash git stash list git stash pop https://goddaehee.tistory.com/253
git reset –soft HEAD~1 https://gmlwjd9405.github.io/2018/05/25/git-add-cancle.html
git clean -d -f -f https://devonaws.com/git/git-pull-%EB%AA%85%EB%A0%B9-%EC%8B%9C%EC%97%90-untracked-working-tree-files-overwritten-%EB%82%98%EC%98%AC-%EB%95%8C/
git rm –cached [File Name] git commit -m "Fixed untracked files" git push origin master https://gmlwjd9405.github.io/2018/05/17/git-delete-incorrect-files.html
SSL certificate problem: self signed certificate 에러 https://www.lesstif.com/gitbook/git-https-repository-ssl-14090808.html
※ 소스는 로컬에 있고 github에는 빈 repository 가 있을 경우 github 계정 셋팅은 이미 완료되어 있다는 가정. 프로젝트 우클릭 > Manage Remotes 에서 git full url 을 등록한다. 프로젝트 우클릭 > git > add 프로젝트 우클릭 > git > push
좀 멍청한 짓이었는데, intellij 셋팅 후 clone 으로 프로젝트를 받아온 상태에서, 당연히 remote repository 가 clone 주소라고 생각하고 있었는데, remote branch 의 주소가 다름 아닌 local branch 의 주소였던 것이다. 그래서 push가 reject 가 된 것.. remote repository 의 주소를 원격지로 다시 설정하고 push를 하니 문제가 없었다. (-_- )..
https://yoshikixdrum.tistory.com/200
https://donggov.tistory.com/30 https://ktko.tistory.com/entry/gitignore%EB%A5%BC-%EC%82%AC%EC%9A%A9%ED%95%98%EC%97%AC-%EA%B9%94%EB%81%94%ED%95%98%EA%B2%8C-git-Commit-%ED%95%B4%EB%B3%B4%EA%B8%B0 https://www.atlassian.com/git/tutorials/saving-changes/gitignore
– 출처: forgiveall.tistory.com/376 – * git-bash 커맨드창에서 아래의 명령 실행 git config –global gui.encoding utf-8 (모든 repository 에 적용하고 싶지 않다면 –global 옵션을 제거하면 된다.) * 참고 링크 Git-bash 를 사용하며 발생한 한글관련 문제들