使用git下載程式碼

使用git下載程式碼

我是 git 新手,想從 GitHub 下載一些程式碼,我有一個 URL:https://github.com/PointCloudLibrary/pcl/tree/master/doc/tutorials/content/sources/qt_visualizer

我已經在 Ubuntu 上安裝了 git,但現在我想下載上面 URL 中的所有 7 個檔案。網站上似乎沒有下載這些文件的按鈕。那麼我應該使用 git 的哪些命令從終端下載它們呢?

答案1

結帳稀疏在 git 中,但您仍然需要先克隆整個儲存庫,這似乎不是您想要的(畢竟 pcl 是大套件)。

raw因此你必須從url一一下載這些檔案:

wget https://raw.githubusercontent.com/PointCloudLibrary/pcl/master/doc/tutorials/content/sources/qt_visualizer/CMakeLists.txt
wget https://raw.githubusercontent.com/PointCloudLibrary/pcl/master/doc/tutorials/content/sources/qt_visualizer/main.cpp
[...]

不幸的是 github 不允許git遞歸下載目錄的全部內容(使用wget -r)。

相關內容