-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Jake C edited this page Aug 11, 2022
·
8 revisions
Copyright © 2021 by Jworkslab. All Rights Reserved
git config --global user.name "사용자 이름"#username 변경
git config --global user.email "사용자 이메일 주소"#usermail 변경
git config --list#변경 내용 확인
git init#초기화
git add .#모든 파일 추가 (특정 파일만 추가하길 원하는 경우, git add 파일이름.확장자)
git status#상태 표시 명령 (추가할 내용 확인)
git commit -m "first commit"#히스토리 생성
git remote add origin https://github.com/**jworkslab/Python**.git#연결고리 생성
git remote -v#연결고리 확인 (선택)
git push origin master#보내기