SVN |
These notes are my personal online notebook of useful commands and "how-to's". You are welcome to make use of them if you find them helpful. They obviously don't come with any warranty! Click on one of the category tags above for the notes in any category. |
|||
If you want to keep your project in Subversion, Google only gives you automated script for Sourceforge. In fact it is easy to migrate the repo to another host, e.g. |
|||
The following steps are suggested here: stackoverflow.com/…-repository
rm -rf .git
git init git add . git commit -m "Initial commit"
git remote add origin <github-uri> git push -u --force origin master |
|||
I am about to set up a webdav server under CentOS 6.0 |
|||
svn ps svn:keywords Id [file(s)] svn ps svn:executable yes [file(s)] svn pd svn:executable [file(s)] # propdel svn pl -v [file(s)] |
|||
This article was originally posted at: If I am breaking any copyrights here, please let me know and I will remove it. Note that Drupal now blocks any path containing "svn-base". See: http://drupal.org/node/28776 Posted At : July 5, 2006 9:54 PM By : Mark |
|||
#place to put dget scripts DGETDIR=/root/dget
svn co http://drupal-get.svn.sourceforge.net/svnroot/drupal-get/trunk $DGETDIR cp $DGETDIR/rename_to_settings.sh $DGETDIR/settings.sh $DGETDIR/setup.sh $DGETDIR #check out drupal core, contrib dsvn checkout #use dsite checkout if no need to commit from this site dsvn checkout x x a6paths |
|||
Putting this code into a page will let it update the site from a repository: If the repository requires a password for update, the following can be done: |
|||
<Location /svn> DAV svn SVNParentPath /var/www/svn # Limit write permission to list of valid users. |
|||
Installation:Quick intro (but use htpasswd not htpasswd2) http://www.howtogeek.com/howto/ubuntu/install-subversion-with-web-access... |
|||
