Публикации на тази страница:
Премахване на .svn директории
Споделено на 05.04.2009 00:21 от Живко
| тагове:
subversion
Премахване на .svn директории
find ./ -name ".svn" -type d -exec rm -rf \{} \;
subversion and rails project
svn remove log/* --force svn commit -m "removing all logs from subversion" svn propset svn:ignore "*.log" log/ --force svn update log/ svn commit -m "Ignoring all files in /log/ ending in .log" svn propset svn:ignore "*" tmp/sessions tmp/cache tmp/sockets svn commit -m "Ignoring all files in /tmp/" svn remove tmp/* svn propset svn:ignore "*" tmp/ svn update tmp/ svn commit -m "ignore tmp/ content"


а>
а>