(Bug)git 推送問題 git add .
使用 git add .
1git add . fatal: will not add file alias 'public/tags/OpenCV/index.html' ('public/tags/opencv/index.html' already exists in index)
git commit -m “ ”
後面也出現一堆 modified…… 紅字
12345678Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git restore <file>..." to discard changes in working directory) modified: .gitignore modified: . . .
原因這個錯誤是因為 Git 在 W ...
github 不能推的其中一種狀況 甚至雲端是空的
1234567To https://github.com/name/resp.git ! [rejected] main -> main (non-fast-forward)error: failed to push some refs to 'https://github.com/name/resp.git'hint: Updates were rejected because the tip of your current branch is behindhint: its remote counterpart. Integrate the remote changes (e.g.hint: 'git pull ...') before pushing again.hint: See the 'Note about fast-forwards' in 'git push --help' for details.
若是有東西 可以先pull下來,因為可能本機是舊檔
1git pull ...
(Bug)hexo生成模板時有問題
結果很單純是 文件前面的config沒有寫好
這邊是tags -[] 這個的問題
又或者忘記存檔
(Bug)Hexo 紀錄
12345node:internal/fs/promises:862 const result = await binding.readdir( ^Error: ENOENT: no such file or directory, scandir
換新電腦想說久違看一下我的部落格
結果跳BUG,不能使用,找不到資料夾甚麼的
紀錄一下
*結論 版本太高
後面用的nodejs 版本是 20.11.1
hexo 資源版本是18.17以下
重新安裝低版本nodejs.exe 就可
(Bug)C# System.IO.IOException:
System.IO.IOException: ‘由於另一個處理序正在使用檔案 ‘C:....’,所以無法存取該檔案。
123456789101112//原先我用一個path = @"C:\..\.."System.Windows.Controls.Image image = new System.Windows.Controls.Image();image.Source = path//後面我要刪除這個檔案時File.Delete(path)#region 錯誤訊息System.IO.IOException: '由於另一個處理序正在使用檔案 'C:\..\..',所以無法存取該檔案。#endregion
Solve12345678910111213141516171819202122path = @"C:\..\.."System.Windows.Controls.Image image = new System.Windows.Controls.Image();System.Drawing.Image img = ...