Login
Remember
Register
Ask a Question
Explain what checkout command is and how to use the checkout command in SVN?
0
votes
asked
Dec 17, 2020
in
SVN
by
SakshiSharma
Explain what checkout command is and how to use the checkout command in SVN?
#svn-checkout-command
#svn-command
#svn-checkout
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Dec 17, 2020
by
SakshiSharma
Check-Out command in SVN is used to create a local workable copy of your project retrieved from
the local repository.
For example, you have a project located in the repository created at URL location
http://www.madanswer.com/svn/myrepo/myproject
. So you have to checkout myproject into your local
system assuming myrepo is a public repository. You will use code
svn co
http://www.madanswer.com/svn/myrepo/myproject
.
This command will copy all your files to your current directory. If you want checkout the
directory which is in a private repository, you will then use the following command
svn co
http://www.madanswer.com/svn/privaterepo/myproject
–username admin –password admin
...