반응형
Git 계정 정보 등록
$ git config --global user.name ID
$ git config --global user.email email
Git Local 저장소 생성
$ git init
Git Branch Main으로 변경
$ git branch -M main
Github 원격 저장소와 연결
$ git remote add origin https://github.com/ID/MITM.git
Git ID/Access Token 저장
$ git config --global credential.helper store
파일 등록
$ echo "Project" > README.md
$ git add ./README.md
$ git status
파일 삭제
$ git rm "README.md"
로컬저장소 상태를 GitHub에 업로드 (main Branch)
$ git commit -m "add README.md File"
$ git push origin main
원격 저장소와 동기화
$ git pull
특정 폴더 내 여러 Repositories pull
$ find . -mindepth 1 -maxdepth 1 -type d -print -exec git -C {} pull \;
로그인 시 사용하는 Access Token 생성
※ 2021년 8월 13일부터는 Remote Repository 사용 시 Access Token 필요 (fatal: Authentication failed for~)
1. 프로필 -> Settings -> Developer settings 클릭
2. Personal Access Tokens -> Generate new token 클릭
3. 메모, 만료 기간, 권한 범위 설정 후 Generate token 클릭
4. 생성된 Access Token 확인
'Study > 기타' 카테고리의 다른 글
Package-lock.json이란? (0) | 2022.11.16 |
---|---|
[MAC] AWS-Vault 설치 및 사용법 (0) | 2022.11.10 |
Docker 명령어 정리 (0) | 2022.08.06 |
전자 서명 동작 과정 (0) | 2022.08.06 |
Linux Error 해결 방법 (0) | 2020.09.22 |
댓글