리눅스 프롬프트 창에서 git 설치 및 커멘드 사용하기
1) git 설치 및 설정 sudo apt-get install git 설치하기 sudo apt-get instal git-core 설치하기 git config --global user.name haetae 이름 등록 git config --global user.email haetae@gmail.com 이메일 등록 git config --list 잘 입력이 되었는 지 조회 2) 수정된 소스를 구분해주는 색상 옵션 설정 git config --global color.ui "auto" 3) 저장소 만들기 저장소로 사용할 디렉토리를 만들고 디렉토리 안에서 git init 명령어로 저장소 초기화 mkdir robot 저장소 만들기 cd robot git init 저장소 초기화 rm -rf .git 저장소로 초기..
Programming
2021. 8. 18. 17:13