简体   繁体   中英

Linux command to delete all files except .git folder?

I want to delete all of the current directory's content except for the .git/ folder before I copy the new files into the branch.

What's the linux command for that?

Resetting the index is cheap, so

git rm -rf .
git clean -fxd

Then you can reset the index (with git reset ) or go straight on to checking out a new branch.

With find and prune option.

find . -path ./.git -prune -o -exec rm -rf {} \; 2> /dev/null


Edit: For two directories .git and dist

 find . -path ./.git -prune -o \\( \\! -path ./dist \\) -exec rm -rf {} \\; 2> /dev/null 

As Crayon mentioned in the comments, the easy solution would be to just move .git out of the directory, delete everything, and then move it back in. But if you want to do it the fancy way, find has got your back:

find -not -path "./.git/*" -not -name ".git" | grep git
find -not -path "./.git/*" -not -name ".git" -delete

The first line I put in there because with find , I always want to double-check to make sure it's finding what I think it is, before running the -delete .

Edit: Had a braindead moment, didn't just copy from my terminal.

Edit2: Added -not -name ".git" , which keeps it from trying to delete the .git directory, and suppresses the errors. Depending on the order find tries to delete things, it may fail on non-empty directories.

One way is to use rm -rf * , which will delete all files from the folder except the dotfiles and dotfolders like .git . You can then delete the dotfiles and dotfolders one by one, so that you don't miss out on important dotfiles like .gitignore , .gitattributes later.

Another approach would be to move your .git folder out of the directory and then going back and deleting all the contents of the folder and moving the .git folder back.

mv .git/ ../
cd ..
rm -rf folder/*
mv .git/ folder/
cd folder
for i in `ls | grep -v ".git"` ; do rm -rf $i; done; rm .gitignore;

the additional rm at the end will remove the special .gitignore . Take that off if you do need the file.

as CB Bailey mention:
I want to remove the history of tracker files too.

git rm -rf .
git clean -fxd
git update-ref -d refs/heads/master #or main or ...

should find all the files and directories that with the name .git

find .  -name .git

should find all the file and directories not named .git

find . -not -name .git

delete all the files that you find

find . -not -name .git -exec rm -vf {} \;

be sure that the find is doing what you want

if you want to delete directories change the rm command to rm -rvf I include the v option to see the files that are deleted.

if you want to make sure about the files before you delete them pipe the find command to a file and review the results

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM