[Git] 다중 git 연결 설치 + 구성 + 일반 명령 + FAQ
설치 & 설정
설치 패키지 다운로드
웹사이트 클라우드 노트 다운로드
프로비저닝
1. Git Bash를 열고 계정으로 환경 설정 2. 사용자 이름 설정, 메일박스 설정
#
git config --global user.name "username" //( "username" ,)
#
git config --global user.email "[email protected]" //("[email protected]" )
3. 구성이 OK인지 확인
git config --global --list
4、ssh 생성
ssh-keygen -t rsa
6、구성이 성공적으로 연결되었는지 테스트
ssh -T [email protected]
다중git 사용자 전환 구성
1. 공공 사용자와 메일박스 설정
git config --global user.name "putong"
git config --global user.email "[email protected]"
git config --global --list
2. 키 파일 생성,git에 설정
ssh-keygen -t rsa
/c/Users/halo/.ssh/id_rsa85
、
3. hosts 파일을 설정하여hostname를 적용합니다
#ip hostname
111.111.111.111 git.gitedit.com
192.168.100.85 cpppppv.com.cn
4. 설정 프로필config
여러 연결을 설정하여 어떤 키를 식별할 수 없고 기본 키 파일을 자동으로 식별하여 접근할 권한이 없습니다
#
# git
#hosts hostname
# ( )
#
#putongCompany85
Host cpppppv.com.cn
HostName cpppppv.com.cn
User putongCompany85
IdentityFile ~/.ssh/id_rsa85
#putongCompany49
Host git.gitedit.com
HostName git.gitedit.com
User putongCompany49
IdentityFile ~/.ssh/id_rsa49
5. 성공 여부 확인
ssh -T git@git.gitlab.com
일반 명령
코드 git clone 다운로드
git clone xxx(ssh http )
분기 전환
git checkout xxx( )
코드 충돌 해결
git stash( )
git pull
git stash pop( )
현재 경로로git 가져오기
git init
새 키 식별
ssh-agent bash
FAQ
오류 보고: ssl certificate problem self signed certificate
git config --global http.sslVerify false
오류 보고: ssh: Could not resolve hostname xxx: Name or 서비스 not known fatal: Could not read from remote repository.
#C:\Windows\System32\drivers\etc
#ip hostname
111.111.111.111 git.gitedit.com
192.168.100.85 cpppppv.com.cn
오류 보고: Permission denied(publickey, gssapi-keyex, gssapi-with-mic).
여러 연결을 설정했기 때문에 어떤 키를 식별할 수 없고 기본 키 파일을 자동으로 식별할 수 있으며 접근할 권한이 없습니다
#
# git
#hosts hostname
# ( )
#
#putongCompany85
Host cpppppv.com.cn
HostName cpppppv.com.cn
User putongCompany85
IdentityFile ~/.ssh/id_rsa85
#putongCompany49
Host git.gitedit.com
HostName git.gitedit.com
User putongCompany49
IdentityFile ~/.ssh/id_rsa49
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
BeanUtils에서 맵을 개체로 직접 캡슐화폼에서 제출한 데이터를 대상에 봉인하는 것이 필요합니다 대상order 프론트 데스크톱 페이지:name 속성과 대상 속성이 일일이 대응합니다 웹 층 봉인 프론트 데스크톱의 데이터를 키 값 대 맵에 저장합니다 Map m...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.