add *
means add all files in the current directory, except for files whose name begin with a dot. This is your shell functionality and Git only ever receives a list of files.
add *는 이름이 점으로 시작하는 파일을 제외하고 현재 디렉토리에 있는 모든 파일을 추가한다는 의미입니다. 이것은 쉘 기능이며 Git은 파일 목록만 수신합니다.
add .
has no special meaning in your shell, and thus Git adds the entire directory recursively, which is almost the same, but including files whose names begin with a dot.
add .는 쉘에서는 특별한 의미가 없으므로, Git은 전체 디렉토리를 재귀적으로 추가합니다. 이는 (git add *와) 거의 동일하지만 이름이 점으로 시작하는 파일을 포함합니다.\\