[Git] first commit 하기 & git ignore가 동작하지 않을 때(git cache 삭제)
프로젝트를 만들고 맨 처음 깃에다가 올려보자
[git first commit]
$ git init . // .은 디렉토리의 모든 것을 포함한다는 의미
$ git add .
$ git commit -m "firstCommit"
$ git status // 상태 확인 (생략가능)
$ git remote add origin <git address>
//=======계정 확인========
$ git config --global user.name <로그인 Id>
$ git config --global user.email <email>
/=======계정 확인========
$ git push -u origin master(or develop)
first commit을 한 후, git에서 관리하지 않을 파일들이나 디렉토리 등을 설정하는 ignore 파일을 올려두는데,
가끔 제대로 적용되지 않을 때가 있다.
이 때, git 의 cache를 지워주면 정상적으로 동작했다.
[git cache 삭제하고 commit]
$ git rm -r --cached .
$ git add .
$ git commit -m <commit message>
'[개발 공부] > [Git - 버전관리]' 카테고리의 다른 글
[Git] cherry-pick: 다른 branch commit 복사해오기 (0) | 2022.05.26 |
---|---|
[Git] pull 되돌리기 & 원격에 올라간 commit 되돌리기 (0) | 2022.05.26 |
[Git] local branch 생성/삭제 & remote branch 연동/삭제 (0) | 2022.05.26 |
[Git] SSL 에러: SSL certificate problem: unable to get local issuer certificate 3가지 해결방법 (0) | 2022.02.16 |