728x90
환경 설정
Git 사용 준비
1. git 설치
- https://git-scm.com/에 접속해 OS에 맞는 최신 버전의 git을 설치
- 여러가지 설정이 필요하지만 default setting으로 모두 설치하면 문제 없음
2. config 설정
- 개인 PC라면 아무 폴더 경로에서 우클릭 후 git Bash를 열어 아래 명령어 입력
- 어떤 경로에서 git으로 형상 관리를 해도 동일한 email과 username을 사용
git config --global user.email "github 계정 email" git config --global user.name "사용자 이름"
- 어떤 경로에서 git으로 형상 관리를 해도 동일한 email과 username을 사용
- 공유 pc (deep cluster 등)에 내 저장소의 code를 clone한 경우 해당 경로에서 bash를 연 후
--global
제외하고 config 설정
GUI를 활용해 git을 사용하기
- git 사용이 어려운 점 중 하나는 client command 학습 부담이 큰 점이 있다.
- git의 기초 개념을 이해하고 GUI를 사용하면 훨씬 적은 부담으로 git을 사용 할 수 있다.
vscode를 사용한 git gui
- https://code.visualstudio.com/에서 OS 버전에 맞는 vscode download
1. 필요 Extensions 설치
- Git Graph
- GitHub Pull Requests
2. github login
- remote repository를 clone하는 방법
![[Git 공부 2024-12-28 15.58.01.excalidraw]]F1 → Git:clone 검색 → Clone from github
로그인 진행- 내 계정에 존재하는 remote repository를 clone 가능함
- local repository 생성 → github remote repository로 publish
- Publish to GitHub 버튼 클릭 시 login 진행