728x90
반응형

https://git-scm.com/download/win

 

Git - Downloading Package

Download for Windows Click here to download the latest (2.38.1) 32-bit version of Git for Windows. This is the most recent maintained build. It was released 20 days ago, on 2022-10-18. Other Git for Windows downloads Standalone Installer 32-bit Git for Win

git-scm.com

Click here to download 클릭하여 Git Bash 설치

모두 기본 설정으로 넘긴 후

기본 폴더 우클릭 > Git Bash Here 실행

깃허브에 저장소 작성 또는 복제

git init
git clone

git config --global user.name "username"
git config --global user.email email@email.com
git config --list

로컬 저장소에 sshtest.py 파일 추가

git add .: 현재 및 하위 디렉토리의 모든 파일 index 추가

git add sshtest.py
git add .

로컬 저장소에 파일 추가/변경 사항 기록

설명: ssh connection test

설명 변경(수정): change description

git commit -m "ssh connection test"
git commit --amend -m "change description"

git status

Github의 Repository 추가하여 copy 후

원격 저장소의 정보(주소) 추가

git remote add origin https://github.com/sehee1122/SystemMaintenance.git

로컬 저장소의 변경 사항을 원격 저장소에 반영

git push origin master

Sign in with a code를 선택할 경우
Sign in with your browser

Authorize

branch 생성됨, 이후

git merge <branch>
git pull <remote> <branch>

git merge master
git pull origin master

branch 변경(변경할 브랜치 작성(e.g. main, master))

git checkout <branch>

전체 과정

 

728x90
728x90

+ Recent posts