git無法新增資料夾下檔案

2021-10-10 13:09:33 字數 427 閱讀 2905

git 無法新增資料夾下檔案

發現無法提交某個子資料夾下的檔案。

google後發現可能是該子資料夾下有.git資料夾導致無法上傳。

刪除子資料夾下.git後,依然無法提交子資料夾下的檔案。

嘗試以下方法:

git

rm --cached directory

git add directory

注:directory為子資料夾的路徑。

但是執行git rm --cached directory時,提示

fatal: unable to create 『xx/.git/index.lock』: file exists.

執行下面命令後解決

rm -f xx/.git/index.lock

PHP遍歷資料夾下檔案

dir e video 這裡輸入其它路徑 php遍歷資料夾下所有檔案 handle opendir dir.echo 檔案 while false file readdir handle closedir handle 用了這段 遍歷所有檔案,幫我把所有檔名存為乙個陣列。s explode n tr...

C 遍歷資料夾下檔案

那麼到底如何查詢檔案呢?我們需要乙個結構體和幾個大家可能不太熟悉的函式。這些函式和結構體在的標頭檔案中,結構體為struct finddata t 函式為 findfirst findnext和 fineclose。具體如何使用,我會慢慢講來 首先講這個結構體吧 struct finddata t ...

python 遍歷資料夾下檔案

需求描述 1 讀取指定目錄下的所有資料集檔案 2 讀取指定檔案,輸出檔案資料 3 儲存到指定目錄 實現過程 如下 coding utf 8 created on thu may 10 17 02 40 2018 author admin import os import pandas as pd i...