
git status 명령어의 출력 결과Git Bash에서 실행된 git status 명령어의 출력 결과입니다. 아래와 같이 해석할 수 있습니다.1. 현재 브랜치 정보On branch master현재 사용자가 master 브랜치에 위치해 있습니다.아직 커밋이 없다는 것을 의미합니다.2. Untracked Files (추적되지 않은 파일)No commits yetUntracked files:(use "git add ..." to include in what will be committed) __pycache__/ main.py__pycache__/ 디렉터리와 main.py 파일이 Git에 의해 추적되지 않고 있습니다.Git은 기본적으로 새로운 파일을 자동으로 추적하지 않으며, git add 명령어..