The git-clean tag has no wiki summary.
3
votes
3answers
44 views
git clean -f -d removed files from my local directory
git clean -f -d removed files from my local directory as well How do I retreive them?
I used it to remove untracked directories and files and found that it also deleted it from my local file system. ...
0
votes
1answer
18 views
Do git-clean changes propagate to remote server on git push?
I have accidentally git cleaned my local repository and i know i can't get those untracked files back. But i want to know if this change will be propagated to remote server (when i git push) or not?? ...
0
votes
2answers
78 views
Undo a git clean command?
I just used a "git clean" command and managed to delete my Documents, Music, and other directories. Is there a way to undo this and somehow get those files back? I did this via Terminal on Mac. Time ...
1
vote
1answer
164 views
Are all my files deleted when issuing git clean -f?
I accidentally issued:
git clean -f
On a directory I recently initialized. I noticed that all my text files in that directory are now gone.
As per research, I've come to known that it's ...
6
votes
4answers
534 views
Git: Exclude a file with git clean
i'm working on a big python project, and i'm really sick if .pyc and *~ files. I'd like to remove them. I've seen that the -X flag of git clean would remove untracked files. As you can imagine, i'm ...
5
votes
2answers
1k views
git clean: What does “Would not remove” mean?
When I run git clean --dry-run the results are a bit like:
Would remove an_untracked_file
Would remove an_untracked_file_2
Would not remove some_unrelated_folder/subfolder/
The "unrelated" folders ...
20
votes
5answers
4k views
Can I undo a `git clean -fdx`?
I was following the instructions on making github pages, and forgot to move down into my git sub directory. As a result, I just nuked an entire directory of documents with git clean -fdx. Is there any ...
10
votes
3answers
2k views
Git: need to recursively 'git rm' the contents of all bin and obj folders
Someone by accident just commited all of their bin and obj folders to our repo
(there are around 40 such folders). I would like to do a git rm -r
on all of these folders. Is there a command to do ...
49
votes
4answers
19k views
Git - how to revert uncommitted changes including files and folders?
Is there a git command to Revert All Uncommitted Changes in Working Tree and Index and to remove also New Files and Folders ?