Programming/Git&Github

[git/github] .gitignore 적용하기

devssun 2017. 9. 25. 18:29
728x90
반응형

git ignore 적용하기

  1. https://www.gitignore.io/ 에서 원하는 언어, ide등 입력하여 .gitignore 생성

    • 복사
  2. gitignore 적용 (open terminal)

    • .gitignore 파일 열기 / 생성 (vim .gitignore)
    • git add .gitignore
    • git rm --cached -r . (이미 버전관리를 하고 있는 애플리케이션이라면 gitignore를 생성하여도 바로 적용되지 않는다 그래서 cached를 지운다)
    • git add .
    • git commit -m "commit message"
    • git push
반응형