리모트 서버에 붙어서 git clone을 하는법
1번방법.
git clone https://github.com/ID/repo_name.git
여기서 password을 github에서 발급받은 토큰을 넣어야 하는데
터미널 환경에서 비밀번호 붙여넣기가 안되는 경우가 있다. 그럴때는 2번 방법으로.
2번방법.
git clone https://<PAT>@github.com/ID/repo_name.git
여기서 <PAT> 가 github에서 발급받은 토큰
반응형
'Programming > python' 카테고리의 다른 글
| git stash, 원격 branch의 최신내용을 local 브랜치에 반영시킬때 (0) | 2025.08.13 |
|---|---|
| jupyter server 띄우기 remote 접근 (0) | 2024.04.22 |
| python SSLerror (0) | 2023.10.27 |
| 간결한 python 문법을 쓰자 - lambda (0) | 2022.05.09 |
| 간결한 python 문법을 쓰자 - one line condition (0) | 2022.04.12 |