echo : 주로 텍스트 출력하거나 파일을 생성하고 기록하는데 사용
echo "This is a test." > test.txt
"This is a test"라는 문장을 test.txt 라는 파일에 생성하면서 저장
git add
git add practice.py
해당 파일의 현재 상태가 커밋 대기 상태로 이동하게 됨
git commit
git commit -m "first commit"
-m는 메세지
git push origin main
origin: 일반적으로 원격 저장소의 기본 이름
main: 푸쉬할 브랜치의 이름!