git

    .gitignore 적용시키기

    .gitignore 적용시키기

    자주 하는 실수 중에 하나가 gitignore를 처음에 안 적어놓고 build 같은 불필요한 폴더 및 파일 들을 git에 업로드하는 것이다. 자주 발생하는 상황에 대해 게시글을 작성해두면 후에 편하게 찾아볼 수 있을 것 같아 업로드 고고. https://stackoverflow.com/questions/25436312/gitignore-not-working Gitignore not working My .gitignore file isn't working for some reason, and no amount of Googling has been able to fix it. Here is what I have: *.apk *.ap_ *.dex *.class **/bin/ **/gen/ .gradle/ bu..