Questions tagged [svn-checkout]

Questions regarding SVN checkout operations.

In the context of the Apache SVN Version Control System, checkout is an operation that checks out a working copy from a repository.

266 questions
18
votes
3 answers

What is the difference between svn import and checkout?

I have used GIT for a long time and new to SVN. I couldn't find a which satisfy me the difference between svn import and checkout. Highly appreciate if someone can show me with an example. Thanks
Gihan
  • 4,163
  • 6
  • 31
  • 49
17
votes
13 answers

Subversion: Check out only those files affected during a specific commit

In Subversion, is it possible to check out only those files affected during a specific commit, provided you know the specific revision number?
Adam Paynter
  • 46,244
  • 33
  • 149
  • 164
16
votes
1 answer

How to execute error checking on multiple PHP files simultaneously?

I have an svn server that I checkout the repository in my computer. The main repositiry has about 2k files 3rd party generic code classes custom classes I have made changes to lots of files (mainly php) and I want to make sure they are all valid…
aki
  • 1,241
  • 2
  • 13
  • 43
16
votes
3 answers

Is there a Subversion Checkout Hook or something similar?

I'm using a subversion repository and I want to know whenever somebody asks my repository for a checkout; like a 'svn co' or an 'svn up'. Is there a hook or some other method that I can use so that a script is run, or email sent, whenever somebody…
Robert Massaioli
  • 13,379
  • 7
  • 57
  • 73
16
votes
6 answers

SVN checkout filtered by file extension?

I have a home-grown automated build script in the form of a DOS batch file. In part of that script, I check out (with "svn checkout") a section of our SVN repository that includes a bunch of third-party stuff that's used in our projects. This…
Chris Farmer
  • 24,974
  • 34
  • 121
  • 164
15
votes
3 answers

Skip directory in SVN checkout? (Partial checkout)

Suppose a remote SVN repository has this structure: /project /src /bulk Now for some reason I already have a copy of bulk (assumed unchanging or rarely changing) elsewhere on my machine. Can I somehow checkout a new copy of the…
Kerrek SB
  • 464,522
  • 92
  • 875
  • 1,084
15
votes
5 answers

Force SVN update / checkout to overwrite local files

i'm planning to run (on my server!) svn update to update my LIVE website with updates. However, i'm worried about 'C' conflicts which will prevent my site scripts from functioning. How can I force the checkout / update process to overwrite all…
siliconpi
  • 8,105
  • 18
  • 69
  • 107
15
votes
2 answers

Execute build.xml with Maven

Is it possible to execute build.xml script with Maven? This script checksout all my projects and subprojects and I've just got used to using maven, didn't really use much of an ant before and I know ant can be used with Maven. So my question is:…
Gandalf StormCrow
  • 25,788
  • 70
  • 174
  • 263
12
votes
7 answers

Committing the code on Subversion (first time)

I am new on Subversion. I have to commit a code on subversion and this is the first time that I am doing this. So my mentor told me to put username on his server using SSH. I did this by following code: amit@ and it works fine. Now he asked to…
user478489
11
votes
1 answer

SVN Checkout a single directory

Here is my dilemma: I want to checkout a single directory (let's call it A) from SVN, but be able to do and svn up A from the parent directory on the computer is checked out on. i.g. I am on in ~/coolstuff I want do do a checkout of A and put it…
MrD
  • 629
  • 1
  • 8
  • 22
11
votes
5 answers

Clean an svn checkout (remove non-svn files)

Id like to remove all files in my working copy that are not known in the svn repository. Effectively as if I'd just made a clean checkout, but Id rather not have to re-download all files. The closest think I've come to this is... rm -rf `svn st |…
ideasman42
  • 42,413
  • 44
  • 197
  • 320
11
votes
3 answers

How do I do an exclusive checkout in SVN?

I'm looking for a way to make an exclusive checkout from SVN. Is there a way to automatically lock a file when it's being checked out ? If one user makes an exclusive checkout, and then another user makes a checkout to the same file, how do I…
Oded
  • 795
  • 2
  • 12
  • 32
10
votes
2 answers

Equivalent of "svn checkout" for git?

What git command should I use to be equivalent to svn checkout? git checkout(?) Many thanks!
Daniel Bonetti
  • 2,306
  • 2
  • 24
  • 33
9
votes
5 answers

svn: OPTIONS of 'https://...': could not connect to server

At work, I am trying to do a svn checkout https://... in a terminal, and I got the error: svn: OPTIONS of 'https://...': could not connect to server (https://...) I can open the address https://... in my internet explorer, after entering the login…
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
9
votes
4 answers

SVN checkout with SVN protocol

I've been using SVN a lot as a single user on a single computer Now I'd like to share my stuff across multiple computers So far I've been checking out from file://c:/myproject I'd like to checkout from svn://mycomputer/myproject How can I map the…
Eric
  • 19,525
  • 19
  • 84
  • 147
1
2
3
17 18