자주 사용하는 git
처음부터 설정하고 remote로 push & pull 까지 정리
1. 원하는 디렉토리 내에서 git repository 생성
git init
2. user 와 useremail 등록 전 먼저 config list를 확인
git config --list
등록된 user가 없는 걸 확인 할 수 있다
3. 사용할 git user와 user email를 추가해준다
git config --{범위} user.name {"name"}
git config --{범위} user.email {email}
4. git remote repository 연결 (origin으로)
git remote add origin {url}
remote 목록 확인
git remote -v
5. git remote branch 가져오기
git fetch origin
remote branch 확인
git remote -v
6. 브랜치 checkout
새로운 브랜치 생성 시
git checkout -b {branch명}
기존 브랜치로 변경 시
git checkout {브랜치명}
7. .gitignore 작성
여기 사용하면 상황에 맞게 알아서 생성 해준다
8. git add, commit and push
'Dev' 카테고리의 다른 글
[Linux] Ubuntu 22.04 사용자 이름(username) 변경하기 (3) | 2023.04.20 |
---|---|
[Linux] 타임 존 (time zone) 변경 방법 (0) | 2023.04.20 |
[Linux] Ubuntu 22.04 LVM 기반 디스크 볼륨 확장 (4) | 2023.04.20 |
[개발환경] RTX 4090 Ubuntu 22.04 딥러닝 학습 서버 환경 구축 (2) (3) | 2023.04.19 |
[개발환경] RTX 4090 Ubuntu 22.04 딥러닝 학습 서버 환경 구축 (1) (7) | 2023.04.18 |