반응형
1. git 다운로드
https://www.git-scm.com/downloads
git --version
2. git 명령어
git init
로컬 저장소 생성
git clone https://github.com/@@@/repository
원격 저장소로부터 로컬에 소스 다운 (git remote add + git pull과 비슷)
git checkout branch
branch로 브랜치 전환
git add test.py
git add .
스테이지 영역에 추가
git commit -m "message"
"message" 메세지로 로컬 저장소에 커밋
git remote add origin https://github.com/@@@/repository
원격 저장소 추가
git pull
git fetch + git merge
git push -u origin main
main 브랜치에 push
config
git config --global user.name "Your Name"
git config --global user.email "Your email"
# 한글 출력 오류 방지
git config --global core.quotepath false
반응형
'컴퓨터 > Python' 카테고리의 다른 글
[Python] 파이썬, Pandas 32bit 설치 오류 정리 (0) | 2024.05.04 |
---|---|
[Python] 파이썬, 윈도우 화면에 이미지 그리기 (0) | 2024.04.22 |
[Python] 파이썬, 서울시 버스도착정보 공공데이터 (0) | 2023.04.17 |
[Python] 파이썬, threading 간단 예제 (0) | 2023.03.27 |
[Python] 파이썬, multiprocessing 간단 예제 (0) | 2023.03.27 |