Git 사용법
2021. 12. 5. 11:28ㆍGit
Token 방식 인증
오른쪽 상단 'Your persional account' 클릭 > Settings > Developer settings > > Personal access tokens > Generate new token
Note : 임의 내용
Select scopes : 'repo' 체크
Generate token
생성된 키 복사
git clone https://Note:인증키@github.com/username/repo
fatal: in unpopulated submodule '서브모듈명'
증상 : git add * 수행시 발생
원인 : 다른 submodule을 추가하려면 발생
조치 : 추가하려는 해당 모듈로 이동하여, 아래 내용 수행
git rm --cached . -rf
'Git' 카테고리의 다른 글
SVN 백업 및 복구 (0) | 2024.12.29 |
---|---|
Local과 Server 소스가 불일치 할때, git add -f (0) | 2024.08.12 |
현재 local 디렉토리를 git에 등록 (0) | 2024.03.16 |
gitlab-runner 명령어 (0) | 2022.03.13 |
gitlab 에러 (0) | 2022.02.01 |