728x90
반응형
https://git-scm.com/download/win
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
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
'Development > Linux' 카테고리의 다른 글
[Linux] 리눅스 기본 시스템 명령어 (0) | 2023.01.10 |
---|---|
[SSH] ping test smtp (0) | 2022.11.14 |
[SSH] 리눅스 서버 원격 접속 (0) | 2022.11.07 |
[리다이렉션] Linux File Descriptor (0) | 2022.11.07 |
[Kali] Kali Linux 한글 ↔ 영어 언어 설정 변경 (0) | 2022.09.15 |