Git_실습

최정민·2023년 8월 8일
0

git

목록 보기
3/4
  1. 위치 : git_ws 폴더 하위 -> test_project

git bash에서 mkdir로 git_ws를 생성하거나 또는 직접 폴더 경로에 가서 새로만들기 해도 된다.

  1. 파일 : test.txt

    touch 명령어로 파일을 생성
    git init 로 git 초기화 및 repository 생성
    git status로 현재 git 상태를 확인 git add를 하라는 문구 표출

  2. index 추가 HEAD등록

    working directory에서 stage저장소로 보내는 것을 index추가
    : git add 파일명
    stage에서 local Reporsitory에 등록하는 것을 HEAD등록
    : git commit 파일명

  3. Remote Repository 생성

    Github 홈페이지 접속 -> repository 생성 -> url 복사

  4. Remote Repository에서 test.txt확인

    복사한 URL를 이요할 시 사용자이름과 토큰 값만 넣고 나머지는 그대로 사용가능
    git push origin https://사용자이름(owner명):token@github.com/사용자이름/git폴더명.git
    git push로 local repository 에서 remote repository로 이동

  5. 파일을 수정 후 Local Repository에 반영

    remote repository에 있는 test.txt를 선택 연필 모양 선택 후 내용 수정
    다시 git bash에서 git pull origin master

profile
데이터분석공부중

0개의 댓글