Notice
Recent Posts
Recent Comments
Link
drexqq
[Git] 자주 까먹는 명령어 적어놓기 본문
728x90
반응형
1029
기존 디렉토리나 프로젝트 깃 레포지토리에 연결하기
git init
git remote add origin [URL]
유저네임 및 이메일 추가하기
git config --global user.name [name]
git config --global user.email [email]
유저네임 및 이메일 삭제하기
git config --unset --global user.name [name]
git config --unset --global user.email [email]
특정 브랜치만 클론하기
git clone -b [branch_name] --single-branch [URL]
728x90
반응형
'ETC > Git' 카테고리의 다른 글
[Git] git 로컬에서 로컬브랜치와 리모트브랜치 관리하기 (0) | 2020.10.15 |
---|---|
[Git] git 로컬 덮어쓰기 (0) | 2020.10.15 |
Comments