如何放棄所有尚未推送的git提交,然後強制git不提交數據/目錄中的任何內容?無法從git commit中刪除文件
我試圖強制覆蓋從我的c9.io項目存儲在github上的項目的所有更改。我不小心加入了一些mongodb數據文件。我試圖將數據/目錄添加到.gitignore。我從github中獲取更新的.gitignore,但是當我嘗試和git push時,data /中的這些頑固文件仍然處於提交狀態。我也試過git reset,git rebase,git clean和this,我把dmpfile.sql改成了pi/data/node-login.1。
請幫我已經在這幾個小時,我真的很沮喪
Counting objects: 15, done.
Delta compression using up to 2 threads.
Compressing objects: 100% (13/13), done.
Writing objects: 100% (13/13), 150.22 KiB | 92 KiB/s, done.
Total 13 (delta 6), reused 0 (delta 0)
remote: warning: File pi/data/local.0 is 64.00 MB; this is larger than GitHub's recommended maximum file size of 50 MB
remote: warning: File pi/data/node-login.0 is 64.00 MB; this is larger than GitHub's recommended maximum file size of 50 MB
remote: error: GH001: Large files detected.
remote: error: Trace: e6ade98208c08b634ed28aefea36dfbb
remote: error: See http://git.io/iEPt8g for more information.
remote: error: File pi/data/node-login.1 is 128.00 MB; this exceeds GitHub's file size limit of 100 MB
To [email protected]:bobbyg603/goddard.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to '[email protected]:bobbyg603/goddard.git'
的.gitignore:
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
data/
pids
logs
results
npm-debug.log
node_modules
.project
.settings
感謝, 鮑比
顯示你的** ** gitignore規則。 –
正在更新... – bobbyg603
您鏈接到一個頁面,該頁面討論使用'git filter-branch'從您的歷史記錄中刪除文件。這是正確的方法。你對這個過程有什麼問題? – Chris