Como fazer o check-out de arquivos svn para outro diretório diferente do atual

4

Quando usamos svn checkout , ele sempre faz o check out de arquivos para o diretório atual.

Como podemos fazer o check-out de arquivos no diretório principal? Eu li svn help checkout , mas não consegui encontrar uma opção para me deixar fazer isso.

    
por lovespring 01.04.2015 / 21:24

1 resposta

4
svn co url://some/url name-of-directory-you-want

De svn help checkout :

$ svn help checkout
checkout (co): Check out a working copy from a repository.
usage: checkout URL[@REV]... [PATH]

  If specified, REV determines in which revision the URL is first
  looked up.

  If PATH is omitted, the basename of the URL will be used as
  the destination. If multiple URLs are given each will be checked
  out into a sub-directory of PATH, with the name of the sub-directory
  being the basename of the URL.

Esse último argumento que você vê ( [PATH] ) é o caminho para o diretório onde você quer que ele seja retirado.

    
por muru 01.04.2015 / 21:57

Tags