깃 커밋할 때

Untracked files:
  (use "git add <file>..." to include in what will be committed)
	"\\353\\254\\270\\354\\240\\234.py"

nothing added to commit but untracked files present (use "git add" to track)

커밋할 파일을 인식하지 못했다는 뜻. git add 로 파일을 등록해준다.

깃 푸시할 때

fatal: The current branch master has no upstream branch

원격 레포지토리에 브랜치가 없을 경우 발생

git push -u origin master

-u : 원격저장소에 master라는 branch를 생성하고 push한다.

브랜치 바꿀 때 (checkout)

pathspec 'main' did not match any file(s) known to git

브랜치 업데이트가 안된 것

git remote update
git fetch