github - Linux 커널 repo를 윈도우 환경에서 git clone하는 방법
오호~~~ linux kernel repo를 웹 브라우저로 방문했는데,
torvalds/linux
; https://github.com/torvalds/linux
특정 디렉터리의 경우 이런 오류와 함께 더 이상 파일 열거가 되지 않습니다.
536 entries not shown
Sorry, we had to truncate this directory to 1,000 files. 536 entries were omitted from the list. Latest commit info may be omitted.
검색해 보니까,
Sorry, we had to truncate this directory to 1000 files.289 entrie were omitted from the list #21480
; https://github.com/orgs/community/discussions/21480
딱히 방법이 없고 그냥 로컬에 clone해서 보라고만 합니다.
c:\temp> git clone https://github.com/torvalds/linux.git
그런데 linux kernel repo의 경우 윈도우 환경에서 clone하면 오류가 발생합니다.
c:\temp> git clone https://github.com/torvalds/linux.git
Cloning into 'linux'...
remote: Enumerating objects: 10459759, done.
remote: Counting objects: 100% (3/3), done.
remote: Compressing objects: 100% (3/3), done.
remote: Total 10459759 (delta 0), reused 2 (delta 0), pack-reused 10459756 (from 1)Receiving objects: 100% (10459759/104
Resolving deltas: 100% (8517823/8517823), done.
error: invalid path 'drivers/gpu/drm/nouveau/nvkm/subdev/i2c/aux.c'
fatal: unable to checkout working tree
warning: Clone succeeded, but checkout failed.
You can inspect what was checked out with 'git status'
and retry with 'git restore --source=HEAD :/'
'aux'와 같은 장치 파일명의 충돌로 인한 것이라는데요,
Unable to do git clone Linux kernel repo using egit in windows
; https://stackoverflow.com/questions/33795071/unable-to-do-git-clone-linux-kernel-repo-using-egit-in-windows
그래서 위의 답변에서는, linux kernel repo를 fork한 자신만의 repo에서 aux.c 파일을 삭제 후 clone에 성공했다는 덧글이 나옵니다.
혹은, WSL 환경이라면 거기서 clone을 하는 것도 좋습니다.
// WSL 환경에서 실행
$ cd /usr/src
$ sudo mkdir kernel
$ cd kernel
$ sudo git clone https://github.com/torvalds/linux.git
이후 해당 WSL 환경에서 Visual Studio Code로 여는 것도 가능합니다.
$ code .
만약 clone까지는 원치 않는다면, github 사이트에서 직접 열어도 됩니다. 즉,
해당 repo 페이지에서 Shift + '.'을 눌러 (github에 로그인 필요) Visual Studio Code를 Web Browser 모드로 열면 모든 파일을 열거할 수 있습니다.
참고로, WSL 환경에서 clone한 이후, 그 파일을 윈도우 환경으로 복사하는 것도 방법인데요,
$ pwd
/usr/src/kernel
$ cp -r . /mnt/c/temp/kernel
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter/xt_connmark.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter/xt_dscp.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter/xt_mark.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter/xt_rateest.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter/xt_tcpmss.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter_ipv4/ipt_ecn.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter_ipv4/ipt_ttl.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/include/uapi/linux/netfilter_ipv6/ip6t_hl.h': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/net/netfilter/xt_dscp.c': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/net/netfilter/xt_hl.c': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/net/netfilter/xt_rateest.c': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/net/netfilter/xt_tcpmss.c': File exists
cp: cannot create regular file '/mnt/c/temp/kernel/linux/tools/memory-model/litmus-tests/Z6.0+pooncelock+pooncelock+pombonce.litmus': File exists
보는 바와 같이, 리눅스 파일 시스템의 대소문자 구분으로 인해 동일한 파일명으로 판정되는 파일들은 오류가 발생하긴 합니다. 그렇긴 해도, 어차피 윈도우에서 커널 빌드를 하지는 않을 것이므로, 게다가 저 파일들이 굳이 필요한 경우가 많지는 않을 것이므로 무시해도 좋을 수준입니다.
그래도 고집스럽게 ^^ 모든 파일을 보고 싶다면
윈도우 측의 디렉터리를 대소문자 구분으로 설정하시면 됩니다.
// 관리자 권한으로 실행
c:\temp> fsutil.exe file setCaseSensitiveInfo c:\temp\kernel
이후 다시 복사하면 아무 문제 없이 모든 파일이 복사는 되는데요, 아쉽게도 윈도우 버전의 Visual Studio Code가 대소문자 구분을 지원하지 않는 듯합니다. 그래서, 아래 화면과 같이 xt_connmark.h는 보이는데, xt_CONNMARK.h 파일은 열거하지 못합니다.
관련해서 2020년부터 이슈가 있었는데,
File explorer does not correctly list case sensitive directories #90983
; https://github.com/microsoft/vscode/issues/90983
Better support for case sensitive macOS #94307
; https://github.com/microsoft/vscode/issues/94307
아직도 open 상태군요. ^^
[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]