해당 Repo(브라우저)에서 Fork를 눌러 나의 origin Remote Repo로 가져옴
git clone [Repo 주소 - https, git, 등 여러가지 주소 브라우저에서 클립복사 가능]
** 언제라도 git status
로 상태 확인! 다음 단계 확인 가능
nano 파일명 (nano로 파일실행) or code . (VScode로 실행)
git add [파일명 or . or ./파일명 or *]
git commit [origin : 내 Repo] [branch 명]
git reset HEAD^ (or HEAD~1) //취소 후, 다시 add, commit의 과정을 거침
git push [origin] [branch] //push는 신중하게! 나중에 Remote Repo 수정하기 복잡
브라우저에서 PR 요청 (요청시 경로 확인 잘 하고, 제목, 수정사항 잘 적어서)
git reset HEAD^
왜 파일에는 변화가 없을까?생활코딩의 강의 영상 강추!!
hard / mixed / soft 의 옵션
git init // 해당 폴더 내에서 실행
untracked, 로컬에서 스스로 작업한 것들이 있다면 해당 폴더를 tracked 되게~
git remote add origin [repo 주소]
git remote add [shortname] [pair repo 주소]
git remote -v // v: verbose 상세화
git add
git commit -m 'message'
git push [origin] [branch]
git log
git pull [shortname] [branch] // ex) git pull pair master
직접 파일을 열어서 해당부분 설정해주고 저장 후 다시 add, commit
git push [origin] [branch]
브라우저에서 PR~