Tag: rm
Remove a Folder from Git
July 11, 2008
Remove a given folder from a Git repository… git rm -r cache/
Delete Multiple Folders
March 8, 2008
Remove two directories and their contents recursively rm -rf dir1 dir2
Remove a Directory Recursively
March 7, 2008
Remove a directory called ‘dir’ and contents recursively rm -rf dir
Some File Operation in SVN
October 22, 2007
Moving, Coping and Deletion svn mv file.php to_folder/ #Move svn cp file.php to_folder/ #Copy svn rm file.php #Deletion
Recent Comments