Git
[GIT] 설치 및 저장소 생성
Jake the Dog
2022. 3. 14. 09:09
반응형

1. Git 다운로드 및 설치
Git
www.git-scm.com
2. Git bash 실행
3. 저장소 생성
git init
4. 상태 확인
git status
5. 테스트 파일 생성
vim hello.py
print("hello")
6. 파일 추가
git add 파일명
7. 커밋
git commit
7-1. 커밋 시 에디터 에러 등이 날 때, 에디터 변경 방법
git config --global core.editor <원하는 에디터 ex)vim>
반응형