Tools

· Tools/Git
git config --global user.name "Your Name" git config --global user.email "your_email@youremail.com" - 이때 Name 은 깃헙 아이디 아닌 설정되어 있는 사용자 이름!! 수정 필요할 때는 git config --unset user.name 하고 다시 설정 +) Github config 확인 git config --list ## 또는 git config -l git remote add origin cd // 해당 폴더로 이동 git status // git 관련 상태 확인 git init // 이 폴더를 git으로 관리할거다 (처음으로 깃 관리할 때만 설정) git add . // 이 폴더의 모든 문서를 깃 stage에 올림 g..
zeomzzz
'Tools' 카테고리의 글 목록