3
votes
3answers
61 views
git: how to add/commit removals made via vanilla rm?
I deleted a bunch of files / directories from a git repository using rm, the Finder, etc.
I'm looking for a git command that'll record these to the index as marked for removal. (As if I had called …
4
votes
6answers
213 views
how to remove large amount of files using rm
Hi ,
I tried to remove around 7,000 log files under a directory by using
rm *.log
but failed with error message "too long argument list" . Is there any way to slove it ?
thanks .
1
vote
3answers
260 views
Unable to remove files recursively from Git
I want to remove all files from Git at ~/bin/.
I run
git rm -r --cached ~/.vim/* # Thanks to Pate in finding --cached!
I get
fatal: pathspec '.vim/colors' did not match any …
0
votes
1answer
283 views
Cron Job on Ubuntu Hardy Executing But Not Deleting Files As Expected
I have a bit of a pickle here and wonder if anyone can give me some pointers:
I have a cron job which executes for a particular user daily and is supposed to sweep files in a particular directory. …
0
votes
2answers
92 views
Unable to undo removal in Zsh
I run at path/test
rm -r *
The tutorial says that I can undo the change by
If one of these fancyeditor commands
changes your command line in a way you
did not intend, you can undo changes
…
0
votes
3answers
84 views
Unable to find files which have been in the folder one minute in Mac’s Zsh
I need to find files which have been in the folder Wastebasket exactly one minute.
The files have been moved all over my computer to the folder.
I run the following unsuccessfully
find -atime n1m .
…
0
votes
2answers
68 views
Unable to remove a special named files in terminal
Some program makes ta my root directory dummy files such as
-1
-2
-3
...
-n
I run unsuccessfully
rm -1
and too
rm "-1"
Terminal thinks that -1 is the option.
How can you remove the files in …
0
votes
1answer
94 views
Unable to use yes -command to all questions when removing
I get a long list of read-only protected files when I run
rm -r trunk | yes
I am trying to answer yes to all by one command.
How can you answer yes to all questions?
1
vote
3answers
553 views
Unable to recover a file in Git
I have two branches in my Git, master and newFeature.
At the branch newFeature, I removed the fileA physically first in terminal and then in Git by
git rm fileA
Subsequently, I run
git add .
git …
2
votes
5answers
485 views
Is there any trivial way to ‘delete by date’ using ´rm’- in bash?
I noticed today (after ~8 years of happily hacking away at bash) that there is no trivial way to 'delete by date' using ´rm'. The solution is therefore to pipe stuff around a combination of commands …
1
vote
2answers
1k views
can’t delete directory under linux due to broken files
kt@rails-ubuntu:~/rails/ledger/releases/20080820144914/.git/hooks$ ls -al
ls: cannot access post-commit: No such file or directory
ls: cannot access update: No such file or directory
ls: cannot …
