Git 썸네일형 리스트형 [Github] VScode - Git log - Git History VScode 확장 프로그램 Git History Git 으로 전송된 Log 확인을 위해 Git History 를 설치 해당 파일이 열려있는 상태에서 Shift + Command + P => 'Git: View File History' 'Compare against previous version' => 이전 버전과 비교 [Github] 정리 02 01 git init 현재 디렉토리 git 저장소로 설정 / 초기화 빈 저장소 생성 02 git status 현재 git 저장소 상태 (변경, 추가된 파일) 표시 (최신 순) add 되지 않은 파일 -> Untracked files 03 git add 파일명 commit 전 add 로 파일 추가 04 git commit -m "first commit" git 커밋. 반드시 설명 입력. 05 git log 현재까지 commit 한 기록 출력 06 git clone 저장소 주소 [Github] 정리 01 01. 저장소 이름 변경 settings > Repository name 저장소 이름 변경 시, URL 도 변경해주어야 한다. 02. 저장소 URL 변경 git remote -v (현재 URL 확인) git remote set-url origin https://github...(바꿀 URL 주소) 03. user name email 변경 git config user.name (현재 유저 네임 확인) git config user.email (현재 유저 메일 확인) git config --global user.name your name (바꿀 유저 네임 입력) git config --global user.email your email (바꿀 유저 메일 입력) 04. remote permission to ~ .. 이전 1 다음