Download a freebie PSD form with sexy style in light color scheme. The photoshop file is fully customizable. Get it now or be inspired for your next design. The file is available for download with no charge and it is free for commercial work, of course.
I have kept promising that I will work on my portfolio for months. Since I sold my blog aext.net last year, I always wanted to have my own personal portfolio where I can publish and share tutorials and freebies way more effective. Too bad that I haven been tied up because of work load, but finally I am now able to finish the site and take it live.
So, if you love tutorials about PHP, WordPress, Ruby on Rails, jQuery, CSS & HTML… or just want to find some place to download freebies like PSD, Vectors… make sure you reserve your subscription to the feed to get noticed as soon as new tutorials and freebies released. If you can’t wait, down to the bottom, you can find a couple of links available to subscribe to.
Hope you will enjoy!
I have been working with subversion for years but this is the second time I have to perform the moving repository task. The help document sucks, and the help command doesn’t help much to find the correct order of options.
The command is kind of short, but not sure if, in the next time, I would forget again. So, I end up writing this post for further needs.
I’m assuming you already have created new repository somewhere. Let’s say SOURCE_REPO is the current repository you want to move and DETINATION_REPO is the repository you want to migrate from SOURCE_REPO.
# Step 1: setup the initial sync
svnsync init DETINATION_REPO SOURCE_REPO --source-username sousername --sync-username syusername
#Step 2: Issue the sync command
svnsync sync DETINATION_REPO
1 2 3 4 5 |
# Step 1: setup the initial sync
svnsync init DETINATION_REPO SOURCE_REPO --source-username sousername --sync-username syusername
#Step 2: Issue the sync command
svnsync sync DETINATION_REPO
|
Actually, you will need to use these args for authentication: (see svnsync help)
--source-username ARG : connect to source repository with username ARG
--source-password ARG : connect to source repository with password ARG
--sync-username ARG : connect to sync repository with username ARG
--sync-password ARG : connect to sync repository with password ARG