Git Bash 내 명령어 ls -al 현재 프로그램이 어떠한 폴더를 바라보고 있는지 cd change directory ex) cd Desktop mkdir make directory touch 파일생성 ex) touch README.md cd .. 뒤로가기 rm -rf 폴더삭제 Git Hub 연결 git init git 연결준비 git remote add origin https://github.com/lee-h-i/web-study.git git 연결 git add . 파일을 업로드 할 준비 git commit -m '@@' 코드저장소에 파일을 올릴 때 같이 보낼 메시지 입력 git push origin master master Branch 이름으로 코드를 날릴 준비 git clone https://..