개발 잡지식
[GitHub] git add * VS git add . 차이점
git add * 는 .gitignore파일에 있는 파일들도 stage로 올리는 것 git add .는 .gitignore파일에 있는 파일명들은 제외하고 stage에 올리는 것 따라서 .gitignore를 사용한다면 git add .를 사용하면 된다!
git add * 는 .gitignore파일에 있는 파일들도 stage로 올리는 것 git add .는 .gitignore파일에 있는 파일명들은 제외하고 stage에 올리는 것 따라서 .gitignore를 사용한다면 git add .를 사용하면 된다!