git (2) 썸네일형 리스트형 [Github] 기존 Repository를 Organization으로 옮기기 1. 옮기려는 기존 Repository의 Settings > Danger Zone > Transfer > Transfer ownership 에서 Transfer 클릭 2. 만들어져있는 Organization에 옮기기 첫 번째 칸에 Organization명 입력 두번째 칸에는 진한색으로 적혀있는 글자 그대로 입력 3. 다 입력했으면 밑에 I understand, transfer this repository 클릭 4. 해당 Organization 들어가서 확인해보기 [intellij/git] git add --ignore-errors -A 오류 해결 intellij 자체에 있는 버튼으로 git에 commit과 push를 하던 중 전혀 반영이 안되고 있음을 알았다. intellij의 git console 창을 열어보니 제목과 같은 에러 메세지를 발견했다. 이를 해결하기 위해, 터미널에서 git rm -r -f --cached . //캐시삭제 git add . 이러한 작업을 해주었더니 commit과 push 모두 잘 반영이 되었다. 이전 1 다음