티스토리 뷰

728x90
반응형

[문제발생]

[root@kubemaster helm]# git checkout https://sonnaraon.github.io/helm-chart-repo/
fatal: Not a git repository (or any of the parent directories): .git
[root@kubemaster helm]#

위와 같은 에러 발생 시 대응 방안은?

[해결방안]

git repository로 사용하기 위한 초기화 작업이 진행되지 않아 발생하는 오류입니다.

해당 디렉토리에 .git 폴더가 있는지 여부를 확인하고 없을 경우 git init 명령어로 초기화 및 기본 설정 폴더인 .git 디렉토리를 생성해야 합니다.

[root@kubemaster helm]# git init 
Initialized empty Git repository in /root/helm/.git/ 
[root@kubemaster helm]# ls -la 
total 0 
drwxr-xr-x. 3 root root  18 Sep 17 00:03 . 
dr-xr-x---. 9 root root 218 Sep 16 23:22 .. 
drwxr-xr-x. 7 root root 119 Sep 17 00:03 .git 
[root@kubemaster .git]# ls -la 
total 12 
drwxr-xr-x. 7 root root 119 Sep 17 00:03 . 
drwxr-xr-x. 3 root root  18 Sep 17 00:03 .. 
drwxr-xr-x. 2 root root   6 Sep 17 00:03 branches 
-rw-r--r--. 1 root root  92 Sep 17 00:03 config 
-rw-r--r--. 1 root root  73 Sep 17 00:03 description 
-rw-r--r--. 1 root root  23 Sep 17 00:03 HEAD 
drwxr-xr-x. 2 root root 242 Sep 17 00:03 hooks 
drwxr-xr-x. 2 root root  21 Sep 17 00:03 info 
drwxr-xr-x. 4 root root  30 Sep 17 00:03 objects 
drwxr-xr-x. 4 root root  31 Sep 17 00:03 refs 
[root@kubemaster .git]#

 

728x90
반응형