다운 받기
git config --list : 모든 설정 확인 가능

git config --global -e : 파일로 열어보기

code . : visual studio 로 연결
(vs에서 command-shift-p로 command palette열어서 >code 입력. Shell Command: install 'code' command in PATH 선택)


초기 설정 끝!

git + 명령어 (ex. git add / git clone)
git 명령어 모음
원하는 위치로 이동하기
% cd 이동할 위치
디렉토리 생성하기
% mkdir 디렉토리이름

폴더에 뭐있는지 확인
% ls -al
git 초기화
% git init

git 삭제
% rm -rf .git
% echo 내용작성 > 파일이름.txt


현재 파일 상태 확인하기
% git status


% git push origin --delete 브랜치명
% git checkout -b 브랜치명