주어진 프로젝트에 올바른 신원 (이름과 이메일)을 사용하도록 git에 지시하는 방법은 무엇입니까?
개인 랩톱을 업무용 프로젝트와 개인 프로젝트에 모두 사용하고 있으며 직장에서의 커밋 (gitolite) 및 업무용 전자 메일 주소 (github)에 업무용 전자 메일 주소를 사용하고 싶습니다.
나는 글로벌 또는 임시 솔루션 인 다음 솔루션에 대해 읽었습니다.
git config --global user.email "bob@example.com"
git config user.email "bob@example.com"
git commit --author "Bob <bob@example.com>"
- 하나의 설정
GIT_AUTHOR_EMAIL
,GIT_COMMITTER_EMAIL
또는EMAIL
환경 변수
한 가지 해결책은 내 환경을 업무용 또는 개인용으로 설정하는 셸 기능을 수동으로 실행하는 것이지만 잘못된 ID로 커밋하는 올바른 ID로 전환하는 것을 잊어 버릴 것입니다.
특정 저장소, 프로젝트 이름 등을 ID (이름, 이메일)에 바인딩하는 방법이 있습니까? 사람들은 무엇을합니까?
git config user.email "bob@example.com"
저장소 내에서 하나를 수행하면 전역이 아닌 THAT 저장소에 구성이 설정됩니다.
내가 당신을 잘못 읽지 않는 한, 당신이 쫓아 온 것 같습니다.
아래 의 로컬 set 명령 을 사용해야합니다 .
지역 세트
git config user.email mahmoud@company.ccc
git config user.name 'Mahmoud Zalt'
현지 입수
git config --get user.email
git config --get user.name
로컬 구성 파일은 프로젝트 디렉토리에 .git/config
있습니다.
글로벌 세트
git config --global user.email mahmoud@zalt.me
git config --global user.name 'Mahmoud Zalt'
글로벌 겟
git config --global --get user.email
git config --global --get user.name
홈 디렉토리의 글로벌 구성 파일 : ~/.gitconfig
.
공백 등을 인용해야합니다 (예 : '이름 성').
저장소에 따라 다른 사용자 이름과 이메일을 유지하려면 ".git"폴더에서 구성 파일을 편집하십시오.
- 저장소로 이동
- 숨겨진 파일을 표시하고 ".git"폴더로 이동
- "config"파일을 찾으십시오
- EOF에 아래 줄을 추가하십시오
[사용자]
이름 = 밥
이메일 = bob@example.com
아래 명령은이 저장소에 설정된 사용자 이름과 이메일을 보여줍니다.
자식 설정 --get user.name
자식 설정 --get user.email
예 : D : \ workspace \ eclipse \ ipchat \ .git \ config의 구성 파일
여기 ipchat은 내 repo 이름입니다
사용 git config user.email "foo@example.com"
하면 현재 프로젝트에 바인딩됩니다.
그것이 제가 프로젝트를 위해하는 일입니다. 리포지토리를 복제 / 초기화 할 때 적절한 ID를 설정했습니다. 그것은 바보가 아닙니다 (당신이 잊어 버린 것을 잊어 버린 경우 당신이 호스에 빠졌다고 생각하면) 말할 수있는 능력없이 얻을 수있는만큼 좋습니다.git config --global user.email 'ILLEGAL_VALUE'
실제로, 당신은 불법적 인 가치를 만들 수 있습니다. 당신의 설정git config --global user.name $(perl -e 'print "x"x968;')
그런 다음 전역이 아닌 값을 설정하지 않으면 오류 메시지가 나타납니다.
[편집] 다른 시스템에서는 "치명적인 : 불가능한 개인 식별자"로 실패하기 위해 x의 수를 968으로 늘려야했습니다. 같은 버전의 자식. 이상한.
--global
매개 변수를 사용하지 않으면 현재 프로젝트의 변수 만 설정합니다.
Git 2.13 includeIf
부터 gitconfig에서을 사용 하여 git 명령을 실행하는 저장소의 경로에 따라 다른 구성의 파일을 포함시킬 수 있습니다.
새로운 Git이 Ubuntu 18.04와 함께 제공되기 때문에 나는 이것을 ~/.gitconfig
행복하게 사용했습니다.
[include]
path = ~/.gitconfig.alias # I like to keep global aliases separate
path = ~/.gitconfig.defaultusername # can maybe leave values unset/empty to get warned if a below path didn't match
# If using multiple identities can use per path user/email
# The trailing / is VERY important, git won't apply the config to subdirectories without it
[includeIf "gitdir:~/projects/azure/"]
path = ~/.gitconfig.azure # user.name and user.email for Azure
[includeIf "gitdir:~/projects/gitlab/"]
path = ~/.gitconfig.gitlab # user.name and user.email for GitLab
[includeIf "gitdir:~/projects/foss/"]
path = ~/.gitconfig.github # user.name and user.email for GitHub
https://motowilliams.com/conditional-includes-for-git-config#disqus_thread
Git 2.13을 사용하려면 PPA (Ubuntu 18.04 / Debian 이전)를 추가하거나 바이너리를 다운로드하여 설치해야합니다 (Windows / other Linux).
One solution is to run manually a shell function that sets my environment to work or personal, but I am pretty sure that I will often forget to switch to the correct identity resulting in committing under the wrong identity.
That was exactly my problem. I have written a hook script which warns you if you have any github remote and not defined a local username.
Here's how you set it up:
Create a directory to hold the global hook
mkdir -p ~/.git-templates/hooks
Tell git to copy everything in
~/.git-templates
to your per-project.git
directory when you run git init or clonegit config --global init.templatedir '~/.git-templates'
And now copy the following lines to
~/.git-templates/hooks/pre-commit
and make the file executable (don't forget this otherwise git won't execute it!)
#!/bin/bash
RED='\033[0;31m' # red color
NC='\033[0m' # no color
GITHUB_REMOTE=$(git remote -v | grep github.com)
LOCAL_USERNAME=$(git config --local user.name)
if [ -n "$GITHUB_REMOTE" ] && [ -z "$LOCAL_USERNAME" ]; then
printf "\n${RED}ATTENTION: At least one Github remote repository is configured, but no local username. "
printf "Please define a local username that matches your Github account.${NC} [pre-commit hook]\n\n"
exit 1
fi
If you use other hosts for your private repositories you have to replace github.com
according to your needs.
Now every time you do a git init
or git clone
git will copy this script to the repository and executes it before any commit is done. If you have not set a local username it will output a warning and won't let you commit.
'IT story' 카테고리의 다른 글
Amazon S3 Boto-폴더 생성 방법 (0) | 2020.08.03 |
---|---|
JERSEY를 사용하여 입력 및 출력 이진 스트림? (0) | 2020.08.03 |
자동 레이아웃을 사용하여 총 너비의 백분율을 만드는 방법은 무엇입니까? (0) | 2020.08.03 |
Django의 {% url %} 템플릿 태그를 통해 쿼리 매개 변수를 전달할 수 있습니까? (0) | 2020.08.03 |
예를 들어 Activator.CreateInstance의 목적? (0) | 2020.08.03 |