목록Whatever (6)
꿈꾸는 개발자의 블로그
[Git] Git 사용하기
User 사용자 인증정보 설정 $ git config --global user.name "aldrn29" $ git config --global user.email aldrn29@gmail.com 사용자 정보 삭제 $ git config --unset --global user.name $ git config --unset --global user.email 사용자 리스트 확인 $ git config --global --list Git Repository 저장소 생성 기존의 디렉토리를 git repository로 설정 (프로젝트 디렉토리에 __.git__ 디렉토리가 생성) $ git init $ git init project1 파일 추가 (Working area -> Staging area) $ git a..
Whatever
2022. 4. 10. 16:22