git bash에서 mkdir로 git_ws를 생성하거나 또는 직접 폴더 경로에 가서 새로만들기 해도 된다.
파일 : test.txt
touch 명령어로 파일을 생성
git init 로 git 초기화 및 repository 생성
git status로 현재 git 상태를 확인 git add를 하라는 문구 표출
index 추가 HEAD등록
working directory에서 stage저장소로 보내는 것을 index추가
: git add 파일명
stage에서 local Reporsitory에 등록하는 것을 HEAD등록
: git commit 파일명
Remote Repository 생성
Github 홈페이지 접속 -> repository 생성 -> url 복사
Remote Repository에서 test.txt확인
복사한 URL를 이요할 시 사용자이름과 토큰 값만 넣고 나머지는 그대로 사용가능
git push origin https://사용자이름(owner명):token@github.com/사용자이름/git폴더명.git
git push로 local repository 에서 remote repository로 이동
파일을 수정 후 Local Repository에 반영
remote repository에 있는 test.txt를 선택 연필 모양 선택 후 내용 수정
다시 git bash에서 git pull origin master