내가 까먹지 않도록 기록해두는 개념들
[사용자 등록]
$git config --global user.name [name]
[사용자 이메일 등록]
$git config --global user.email [useremail.email.com]
[사용자정보확인]
$git congig --list
fatal: not a git repository (or any of the parent directories): .git
[원인]
현재 폴더에 git에 대한 정보를 담은 파일이 없기 때문에 발생하는 에러.
[해결]
$ git init 수행후 다시 $ git remote add 명령어 실행