[공부용]참고 사이트 모음/[git] CentOS에서 Git 저장소 생성하기 (How to create git repository in CentOS) bled 2021. 5. 28. 14:15 https://hbesthee.tistory.com/1543 CentOS에서 Git 저장소 생성하기 (How to create git repository in CentOS) 저장소로 사용할 폴더 생성 mkdir -p /home/repo 저장소에 프로젝트 폴더 생성 cd /home/repo mkdir kernels.git git 저장소 초기화 git init --bare /home/repo/kernels.git/ Initialized empty Git repository i.. hbesthee.tistory.com