[Git] 명령어 - commit, config, init, clone, add, push, pull
2024.05.20 by 끝까지해봐야지
Git에 사용자 이름 및 이메일 설정 - git config # 모든 로컬 저장소에 대한 이름 설정 git config --global user.name "Gildong Hong" # 모든 로컬 저장소에 대한 이메일 설정 git config --global user.email "gdhong@google.com" # 단일 로컬 저장소에 대한 이름 설정 git config user.name "Gildong Hong" # 단일 로컬 저장소에 대한 이메일 설정 git config user.email "gdhong@google.com" # Git 구성 정보 확인 git config --listgit init - 로컬에서 Git 저장소 생성하기로컬에서 Git을 사용하기 위해서는 먼저 Git을 초기화해 Git 저장소..
Devops 도전기/git 2024. 5. 20. 10:41