1
To force the removal of a directory/folder use:
rm --recursive -f [diretório]
Where:
- f: force to remove
- recusive: will fetch the files below the directory passed as parameter
To learn more about the command:
rm --help
1
1
To force the removal of a directory/folder use:
rm --recursive -f [diretório]
Where:
To learn more about the command:
rm --help
Browser other questions tagged git
You are not signed in. Login or sign up in order to post.
Use
rm -rf <nome da pasta>
– acacio.martins