Posts Tagged With: rm

Remove a Folder from Git

Tagged with: , , , , ,

Remove a given folder from a Git repository…


git rm -r cache/
No Comments »

Delete Multiple Folders

Tagged with: , , , , ,

Remove two directories and their contents recursively


rm -rf dir1 dir2
No Comments »

Remove a Directory Recursively

Tagged with: , , , , ,

Remove a directory called ‘dir’ and contents recursively


rm -rf dir
No Comments »

Some File Operation in SVN

Tagged with: , , , , , , ,

Moving, Coping and Deletion


svn mv file.php to_folder/        #Move
svn cp file.php to_folder/         #Copy
svn rm file.php                          #Deletion
No Comments »