About 77,900 results
Open links in new tab
  1. How can I remove/delete a large file from the commit history in …

    Next time I made some edits, deleted the video file, and committed everything, but the compressed file was still there in the repository, in history. I know I can start branches from …

  2. How can I remove file from Git history? - Stack Overflow

    May 3, 2017 · You can specify file path like: "*/a.txt" if you happen to have the same file in different paths or files' path have changed in different commits.

  3. Remove sensitive files and their commits from Git history

    Related: How to remove/delete a large file from commit history in Git repository? and Completely remove file from all Git repository commit history.

  4. Git: How to remove file from historical commit? - Stack Overflow

    Aug 25, 2022 · This will leave the file in the history. The question is to remove the file from the history as well. So it was like the file was never added in the first place.

  5. How to find a deleted file in the project commit history?

    Aug 26, 2011 · Once upon a time, there was a file in my project that I would now like to be able to get. The problem is: I have no idea of when have I deleted it and on which path it was. How …

  6. Permanently removing a file from git history - Stack Overflow

    Assuming no one had cloned the repository, you can use git rebase -i to rewrite the history and remove the file. Use git rebase -i <commit-hash-of-commit-3>. This will open an editor with the …

  7. Remove files completely from a Git repository along with its history

    Remove files completely from a Git repository along with its history Asked 9 years, 9 months ago Modified 9 months ago Viewed 82k times

  8. PowerShell's Clear-History doesn't clear history - Stack Overflow

    Jan 23, 2019 · Delete the offending line from that file and end the current session (or clear it via CB's answer). You can upvote this request for an easier way to temporarily disable the history.

  9. Sharepoint Online: Delete version history in bulk?

    Jul 12, 2021 · It provides an UI and can delete versions in bulk for a particular document, for all documents in a Library or sub-folder or even for the whole site. The tool allows you to specify …

  10. Delete a file and it’s history from git azure dev ops?

    Sep 15, 2021 · I’ve committed and pushed a sensitive password file into our remote repo azure dev ops. However, right now, it’s only on my remote branch. It’s not merged into main yet. Can …