[Git] .gitignore 파일들을 무시하여 스테이지에 올리기 (git add .)
☢️발생한 상황 Unreal Engine에 대한 .gitignore 파일을 적용한 후, 커밋을 하기 위해 "git add *" 명령어를 치니까 다음과 같은 경고가 떴습니다. $ git add * The following paths are ignored by one of your .gitignore files: CppPractice.sln hint: Use -f if you really want to add them. hint: Turn this message off by running hint: "git config advice.addIgnoredFile false" "git add *" 명령어는 추적 중인 모든 파일들을 .gitignore에 적힌 파일까지 포함하여 스테이지에 올리겠다는 의미라고 합니다...