How to make a dry-run with svn update
Note What is svn going to do to my files when I update? svn merge –dry-run -r BASE:HEAD . alias svnupdry=‘svn merge –dry-run -r BASE:HEAD… Read More »How to make a dry-run with svn update
Note What is svn going to do to my files when I update? svn merge –dry-run -r BASE:HEAD . alias svnupdry=‘svn merge –dry-run -r BASE:HEAD… Read More »How to make a dry-run with svn update
find . -name .svn –prune -o -print | xargs chown www-data:www-data #Exclude another directory (cache) find . -name .svn -or -name cache –prune -o -print… Read More »chown a svn project to www-data / exlude .svn directory with find
1/ Find the revision your branch began at: svn log –verbose –stop-on-copy svn+ssh://server/path/to/branch. The final revision printed by this command is the revision in which… Read More »SVN: Merging a Branch into Trunk
Note Pensez a fixer les deux paramètres pathRepo et pathBackup. Merci de me laisser un commentaire si vous en sentez le besoin. #!/bin/bash # Script… Read More »Sauvegarde d’un dépôt SVN
automatically create a SVN repository from a web project directory including trunk, branches and tags #!/bin/bash # Vous pouvez éditer ces variables selon vos besoins… Read More »Création automatique (trunk, branches et tags inclus) d’un dépôt SVN à partir d’un dossier projet
location ~ /.svn/* { deny all; }
svn switch –relocate svn://svnserver1 svn://svnserver2