GIT (8) 썸네일형 리스트형 [Git] username 및 email 변경 명령어 git username 및 email 변경 명령어 프로젝트 전반에 걸쳐 적용하고 싶다면 아래처럼 사용하면 된다. git config --global user.name "이름"git config --global user.email "이메일" 예제) git config --global user.name "kevin"git config --global user.email "kevin@email.com" 프로젝트 하나에서만 변경하고 싶다면 --global 옵션을 제거한다. git config --local user.name "이름"git config --local user.email "이메일" 예제) git config user.name "kevin"git config user.email "kevin@email.. [Gir] git remote url 확인 명령어 git remote url 확인 명령어는 아래와 같다. git remote -v ex)$git remote -voriginssh://future@test.com/home/git/test.git (fetch)originssh://future@test.com/home/git/test.git (push) [Git] 브랜치명 변경 명령어 git 브랜치명 변경 명령어는 아래와 같다. git branch -m 변경전브랜치이름 새로운브랜치이름 ex ) git branch -m before after 위와 같이 명령어를 치면 before 라는 브랜치명이 after로 변경된다. 이전 1 2 다음