我犯了一些文件,並試圖將它們推送到遠程reop。 但是,我在列表中找到一個大視頻文件並終止了推送。 然後我試圖從列表中刪除文件並再次推送。如何停止推送刪除的文件到遠程回購?
$git commit -m "comments" -a
$git push origin my_branch
... # I found mp4 file here and terminated push
$git rm --cached path/to/mp4
$git commit -m "comments" -a
$git push origin my_branch
問題
混帳仍試圖將MP4文件推送到回購。
問題 如何避免刪除的文件推送到遠程回購?
PS
我也試過git rm path/to/mp4
,文件已經從我的目錄,但混帳刪除仍然試圖推動該文件以回購
做一個git checkout使用git rm刪除文件並再次推送文件。這將確保刪除該文件。 –