728x90
- git bash를 Click
<환경설정>
Step1 : git commit을 사용하기 위해 사용자 이름 입력
git config --global user.name 'kang'
Step2 : git commit을 사용하기 위해 이메일을 입력 (깃허브)
git config --global user.email "userID@google.com"
Step3 : 입력한 user.name, user.email이 있는지 확인
git config --list
- 터미널 Click > New terminal > bash에서 작업
<프로젝트 관리>
Step1 : 초기화 - 맨 처음에 프로젝트를 올릴 때 해야함
git init
Step2 : 스테이지에 올리기
git add . # 모든 파일을 추가
git add index.html # html파일만 추가
git status # 상태 확인
Step3 : 히스토리 생성
git commit -m "first commit" # 히스토리를 만들어줍니다 (수정1, 수정2, 수정3, 최종)
Step4 : 히스토리와 프로젝터 연결
git remote add origin https://github.com/Github/firstproject.git
git remote -v # 확인
Step5 : 깃허브 업로드
git push origin master (안 되면 git push origin main)
Step6 : Continuous Update
파일 추가
git add .
히스토리
git commit -m "final commit"
깃 허브로 올리기
git push origin main
<프로젝트 가져오기>
Step 1 : 깃허브에서 가져올 자료 https
git clone "git URL"
Step 2 : 가져온 자료에서 작업할 .py로 이동
cd "경로"
Step 3 : 에디터로 파일 실행
터미널에서 vscode 바로 여는 법
VScode 설정 > ctrl + shift + p > code > Shell Command: Install 'code' command in PATH
code . # VScode 실행
or
python "파일".py
Step 4 : 수정 작업 확인 및 업로드
git diff "파일".py # 다른점 확인
git branch # 커밋 사이를 가볍게 이동할 수 있는 포인트 개념
git push origin main
==== END ====
브랜치 개념 참고
728x90
댓글