[GIT] GIT 학습일지 02

이소티·2023년 8월 12일
0

GIT

목록 보기
2/5

Local Repository 예제




1. Local Repository 생성하기

  • 위치 : git_ws 폴더 하위
  • 이름 : exam_project


mkdir exam_project
cd exam_project




2. 파일 생성 후 Git 으로 관리 시작하기

  • 파일 : exam.txt
  • Index 추가
  • HEAD 등록



touch exam.txt
git init
git add exam.txt
git commit -m 'add exam.txt' exam.txt




  1. Remote Repository 생성 하기
  • 이름 : exam_project
  • 빈 프로젝트

  1. Remote Repository 등록 하기
  • exam_project 의 Local Repository 에 앞서 생성한 remote repository 등록 후 확인


git remote add origin https://<username>:<token>@github.com/<repository>.git
git remote -v






  1. Local Repository 변경내용을 Remote Repository 에 반영하기

  • commit 항목을 Remote Repository 에 반영
  • Remote Repository 에서 exam.txt 확인


git push origin master






6. Remote Repository 변경 내용을 Local Repository 에 반영하기

  • exam.txt 파일 수정 : This is git exam


cat exam.txt
git pull origin master
cat exam.txt







  1. Commit 만들고 각각을 Local 과 Remote 에 반영하기

  • Commit 1 : Local Repository 에서 exam2.txt 생성 후 Remote Repository 에 반영, 확인

touch exam2.txt
git add exam2.txt
git commit -m 'commit 1' exam2.txt
git push origin master




  • Commit 2 : Remote Repository 에서 exam2.txt 수정 후 Local Repository 에 반영, 확인 - This is git exam2.
git pull origin master
cat exam2.txt




  • Commit 3 : Local Repository 에서 exam3.txt 생성 후 Remote Repository 에 반영, 확인 - This is git exam3.
# 내용을 넣어 exam3 생성
cat > exam3.txt
This is git exam3.

# ctrl + D
git add exam3.txt
git commit -m 'commit 3' exam3.txt
git push origin master





  • Commit 4 : Remote Repository 에서 exam3.txt 수정 후 Local Repository 에 반영, 확인 - This is commit exam.
git pull origin master
cat exam3.txt
profile
데이터 관련 학습 일지

0개의 댓글