SVN
2 answers
Is there any way to force subversion to ignore the fact that a locally modified folder has been entirely replaced by something else and just tell it to save the current working copy over the repository as a new version?
For example:
mkdir directory # the real directory has several files inside it too
svn add directory
svn ci
rm -rf directory # another program removes this directory
mkdir directory # it then creates an entirely new directory with similar files to the original directory
svn add directory
Read more »
Created by Anonymous
12 weeks 2 days ago
Tags:
1 answers
I have SVN running on default port, but my svn client can not access it. Could it be my server firewall blocking it?
Read more »
Created by Anonymous
13 weeks 3 days ago
Tags:
0 answers
how can I get rid of subversion error 405 method not allowed?
Read more »
Created by Anonymous
14 weeks 3 hours ago
Tags:
Svn update updates the current working copy of the repository on the local environment.
Syntax:
svn update [PATH...]
Help Options:
--revision (-r) REV
--non-recursive (-N)
--quiet (-q)
--diff3-cmd CMD
--username USER
--password PASS
--no-auth-cache
--non-interactive
--config-dir DIR
If no revision is mentioned, latest HEAD copy is updated.
Example:
svn update
svn up
'svn up' and 'svn update' are same commands.
With svn checkout, we can check out a working copy from a repository.
svn checkout URL... [PATH]
If PATH is omitted, the basename of the URL will be used as the destination.
SVN checkout help options:
--revision (-r) REV
--quiet (-q)
--non-recursive (-N)
--username USER
--password PASS
--no-auth-cache
--non-interactive
--config-dir DIR
Example Usage:
svn checkout svn://<server>/svnrepos/<project name>
svn co svn://<server>/svnrepos/<project name>
SVN import allows for recursively commiting a copy of PATH to URL. If PATH is omitted, current path is assumed.
svn import -m "import project" [PATH] URL
SVN import help options:
--message (-m) TEXT
--file (-F) FILE
--quiet (-q)
--non-recursive (-N)
--username USER
--password PASS
--no-auth-cache
--non-interactive
--force-log
--editor-cmd EDITOR
--encoding ENC
--config-dir DIR
--auto-props
--no-auto-props
Example:
svn import -m "import project" /home/xxxx/public_html file:///svnrepos/<project name>
2 answers
> Hello!
> I get this error on my Windows XP box in my local network:
> "Can't connect to host 'svn://my.box.ip.address.'
> I'd like to get it running in xinet, but I could not get that going. If I check netstat, everything's fine
>
> # netstat -anp | grep LISTEN
> tcp 0 0 0.0.0.0:3690 0.0.0.0:* LISTEN 10127/svnserve
>
> and I can telnet in from the client; the port's open.
>
> C:\>telnet my.box.ip.address 3690
>
Read more »
Created by icyfreshy
38 weeks 4 days ago
Tags:
1 answers
I am importing into a new repository into SVN and I am getting this error: "Can’t convert string from ‘UTF-8′ to native encoding:”. Can somebody thrown light on the fix?
Read more »
Created by programmer
38 weeks 4 days ago
Tags: