Git

    git config

    git config 이것은 최초 1회 실행만 하는 설정 명령어 //git commit에 사용될 username git config --global user.name "깃닉네임 or 내이름" //git commit에 사용될 email git config --global user.email "깃에서 쓰는 이메일 주소" //설정한 내용을 확인할수 있다. git config --list