I have added a file named "file1.txt" to git repo. After that I committed it, added a couple directories called dir1 and dir2, and committed them to git repo.
Now the current repo has "file1.txt", dir1 and dir2.
How can I delete "file1.txt" without affecting others like dir1 and dir2?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
||||
|
Use
|
|||||||||||
|
|
More generally,
|
|||||||||||||
|
|
To remove the file from the repo and NOT delete it from the local file system use:
Sample output from what just happened to me below, where I unintentionally deleted the
|
||||
|
|
|
If you have the GitHub for Windows application, you can delete a file in 5 easy steps:
|
||||
|
|
git rmis the right answer, but remember that the file will still be there in history. If you want to remove a file because it had sensitive information, you'll need to do something more drastic. (Changing history, especially for content you've already pushed, is a drastic action, and should be avoided if possible.) – Keith Thompson May 16 at 21:06