What is the translation of " GIT SVN " in English?

Examples of using Git svn in Portuguese and their translations into English

{-}
  • Colloquial category close
  • Official category close
  • Medicine category close
  • Financial category close
  • Ecclesiastic category close
  • Ecclesiastic category close
  • Computer category close
  • Official/political category close
Git svn tem dois comandos para ajudar com este problema.
Git svn has two commands to help with this issue.
Você deve saber duas coisas importantes sobre git svn log.
You should know two important things about git svn log.
O primeiro é git svn create-ignore, que cria automaticamente arquivos.
The first is git svn create-ignore, which automatically creates corresponding.
Geralmente há vários bazaar de opções,Mercurial, git, svn.
Generally there are multiple options bazaar,mercurial, git, svn.
Executando git svn rebase de vez em quando irá manter seu código sempre atualizado.
Running git svn rebase every once in a while makes sure your code is always up to date.
Para criar um novo branch no Subversion,você executa git svn branch branchname.
To create a new branch in Subversion,you run git svn branch branchname.
Você pode fornecer esse arquivo para git svn para ajudar a mapear os dados do autor com mais precisão.
You can provide this file to git svn to help it map the author data more accurately.
Para fazer um push a um servidor Subversion,você executa o comando git svn dcommit.
To push to a Subversion server,you run the git svn dcommit command.
Isso executa o equivalente a dois comandos- git svn init seguido por git svn fetch- na URL que você fornecer.
This runs the equivalent of two commands- git svn init followed by git svn fetch- on the URL you provide.
Por um lado,você deve limpar as referências estranhas que git svn configura.
For one thing,you should clean up the weird references that git svn set up.
Você pode executar git svn fetch para pegar os novos dados, mas git svn rebase faz a busca e atualiza seus commits locais.
You can run git svn fetch to grab the new data, but git svn rebase does the fetch and then updates your local commits.
Uma das grandes características do Git é uma ponte bidirecional para Subversion chamada git svn.
One of Git's great features is a bidirectional bridge to Subversion called git svn.
Você vai começar com o comando git svn clone, que importa um repositório Subversion inteiro em um repositório Git local.
You will start with the git svn clone command, which imports an entire Subversion repository into a local Git repository.
Você também pode obter o mesmo tipo de informação que svn info lhe dá executando git svn info.
You can also get the same sort of information that svn info gives you by running git svn info.
Se você ler a seção anterior sobre o uso do git svn, você pode facilmente usar essas instruções para git svn clone um repositório;
If you read the previous section about using git svn, you can easily use those instructions to git svn clone a repository;
Os exemplos nas seções anteriores mostram schacon em alguns lugares, comoa saída do blame e do git svn log.
The examples in the previous section show schacon in some places,such as the blame output and the git svn log.
No entanto, git svn assume que você não vai ter vários remotos e salva todas as suas referências em pontos no servidor remoto sem"namespacing.
However, git svn assumes that you won't have multiple remotes and saves all its references to points on the remote server with no namespacing.
Um importador Perforce também é distribuído com Git, masapenas na seção contrib do código fonte- que não está disponível por padrão como git svn.
A Perforce importer is also distributed with Git, butonly in the contrib section of the source code- it isn't available by default like git svn.
Você também pode dizer ao git svn para não incluir os metadados que o Subversion normalmente importa, passando--no-metadata para o comando clone ou init.
You can also tell git svn not to include the metadata that Subversion normally imports, by passing--no-metadata to the clone or init command.
Se você está acostumado a usar o Subversion e quer ver seu histórico no estilo do SVN,você pode executar git svn log para ver o seu histórico de commits na formatação SVN..
If you're used to Subversion and want to see your history in SVN output style,you can run git svn log to view your commit history in SVN formatting.
Assim como o comando git svn log simula o comando svn log off-line, você pode obter o equivalente a svn annotate executando git svn blame FILE.
Much as the git svn log command simulates the svn log command offline, you can get the equivalent of svn annotate by running git svn blame FILE.
A razão para preferir rebasing é que o Subversion tem um histórico linear enão lida com fusões(merges), como Git faz, assim git svn segue apenas o primeiro pai ao converter os snapshots em commits Subversion.
The reason to prefer rebasing is that Subversion has a linear history anddoesn't deal with merges like Git does, so git svn follows only the first parent when converting the snapshots into Subversion commits.
As ferramentas do git svn são úteis se você está preso com um servidor Subversion por agora ou está em um ambiente de desenvolvimento que necessita executar um servidor Subversion.
The git svn tools are useful if you're stuck with a Subversion server for now or are otherwise in a development environment that necessitates running a Subversion server.
É importante lembrar que, ao contrário do Git, que exige que você mescle trabalhos doupstream que você ainda não tem localmente antes que você possa fazer um push, git svn faz você fazer isso somente se as alterações conflitarem.
It's important to remember that unlike Git,which requires you to merge upstream work you don't yet have locally before you can push, git svn makes you do that only if the changes conflict.
Todos estes argumentos especiais serão passados para“git svn” na ordem, e seus valores devem ser caminhos relativos ao diretório raiz do repositório svn..
All these special arguments will be passed to“git svn” in order, and their values must be relative paths to the svn repo root dir.
O conjunto de ferramentas git svn fornece um número de comandos para ajudar a facilitar a transição para o Git, fornecendo uma funcionalidade que é semelhante ao que você tinha no Subversion.
The git svn toolset provides a number of commands to help ease the transition to Git by providing some functionality that's similar to what you had in Subversion.
Se você tiver alterações locais, você deve guardar o seu trabalho(stash) outemporariamente fazer o commit dele antes de executar git svn rebase- caso contrário, o comando irá parar se ver que o rebase irá resultar em um conflito de mesclagem.
If you have local changes,you must either stash your work or temporarily commit it before running git svn rebase- otherwise, the command will stop if it sees that the rebase will result in a merge conflict.
O segundo comando é git svn show-ignore, que imprime em stdout as linhas que você precisa para colocar em um arquivo. gitignore para que você possa redirecionar a saída do arquivo de exclusão de seu projeto.
The second command is git svn show-ignore, which prints to stdout the lines you need to put in a. gitignore file so you can redirect the output into your project exclude file.
É importante notar que quando você está usando git svn, você está interagindo com o Subversion, que é um sistema muito menos sofisticado do que Git..
It's important to note that when you're using git svn, you're interacting with Subversion, which is a system that is far less sophisticated than Git..
Para resolver essa situação,você pode executar git svn rebase, que puxa quaisquer alterações no servidor que você não tem ainda e faz um rebase de qualquer trabalho que você tem em cima do que está no servidor.
To resolve this situation,you can run git svn rebase, which pulls down any changes on the server that you don't have yet and rebases any work you have on top of what is on the server.
Results: 55, Time: 0.0283

How to use "git svn" in a sentence

Perguntas 'git' frequentes - Stack Overflow em Português 56 perguntas Quais as diferenças entre Git, SVN e CVS?
Interface com software de controle de versão (Subversion, Git, SVN, 4.
Suporte a Git, Svn ou outro scm Controles de versão, como disse no item 3, sempre ajudam.
Nos servidores dedicados gerenciados por você isso não é problema, pois pode instalar Git, Svn, ou qualquer outro que preferir.
Getting started with git svn by Manij Shrestha Rafael Izidoro, Desenvolvedor Web Slides sobre GIT apresentado ao grupo MyPlay.
Quais as vantagens, limitações e principais diferenças entre esses 3 sistemas de versionamento, Git, SVN e CVS?
Java linux centos, git svn; Conhecimento em nodejs, mongodb, angularjs.
Experiencia na utilização de ferramentas de controle de versão GIT/SVN.
Salário: A combinar Cargo... - Mgm Consultoria Analista de testes mobile Irá atuar com versionamento de código fonte: GIT, SVN e outros.
Aplicar "git svn clone" (documentados em "git-svn") para os repos SVN.

Word-for-word translation

Top dictionary queries

Portuguese - English