Traduzir "infraestrutura do git" para inglês

Mostrando 50 de 50 traduções da frase "infraestrutura do git" de português para inglês

Tradução de português para inglês de infraestrutura do git

português
inglês

PT git clone, git config, git add, git status, git commit, git push, git pull, git branch, git checkout e git merge

EN git clone, git config, git add, git status, git commit, git push, git pull, git branch, git checkout, and git merge

portuguêsinglês
addadd
statusstatus
branchbranch
checkoutcheckout
eand
cloneclone

PT Git para desenvolvedores Git para marketing Git para gerenciamento de produto Git para designers Git para suporte ao cliente Git para recursos humanos Git para qualquer pessoa que gerencie um orçamento

EN Git for developers Git for marketing Git for product management Git for designers Git for customer support Git for human resources Git for anyone managing a budget

portuguêsinglês
gitgit
marketingmarketing
produtoproduct
clientecustomer

PT Git para desenvolvedores Git para marketing Git para gerenciamento de produto Git para designers Git para suporte ao cliente Git para recursos humanos Git para qualquer pessoa que gerencie um orçamento

EN Git for developers Git for marketing Git for product management Git for designers Git for customer support Git for human resources Git for anyone managing a budget

portuguêsinglês
gitgit
marketingmarketing
produtoproduct
clientecustomer

PT Inspecionar repositório: git status Git stash Aprenda o Git com o Bitbucket Cloud: use uma ramificação do Git para fazer o merge de um arquivo Aprenda o Git com o Bitbucket Cloud: copie o Repositório do Git e adicione arquivos

EN Inspecting a repository: git status Git Stash Learn Git with Bitbucket Cloud: Use a Git branch to merge a file Learn Git with Bitbucket Cloud: Copy your Git repository and add files

portuguêsinglês
inspecionarinspecting
aprendalearn
bitbucketbitbucket
cloudcloud
ramificaçãobranch
copiecopy
adicioneadd

PT Salvar alterações: git add Aprenda o Git com o Bitbucket Cloud: copie o Repositório do Git e adicione arquivos Usar ramificações: git merge Inspecionar repositório: git status

EN Saving changes: git add Learn Git with Bitbucket Cloud: Copy your Git repository and add files Using Branches: git merge Inspecting a repository: git status

portuguêsinglês
alteraçõeschanges
aprendalearn
bitbucketbitbucket
cloudcloud
copiecopy
inspecionarinspecting

PT Usar ramificações: git branch Usar ramificações: git checkout Usar ramificações: git merge Aprenda o Git com o Bitbucket Cloud: use uma ramificação do Git para fazer o merge de um arquivo

EN Using Branches: git branch Using Branches: git checkout Using Branches: git merge Learn Git with Bitbucket Cloud: Use a Git branch to merge a file

portuguêsinglês
checkoutcheckout
aprendalearn
bitbucketbitbucket
cloudcloud

PT Usar ramificações: git merge Reescrever o histórico: git commit --amend Aprenda o Git com o Bitbucket Cloud: copie o Repositório do Git e adicione arquivos Salvar alterações: git add

EN Using Branches: git merge Rewriting history: git commit --amend Learn Git with Bitbucket Cloud: Copy your Git repository and add files Saving changes: git add

portuguêsinglês
históricohistory
aprendalearn
bitbucketbitbucket
cloudcloud
copiecopy
alteraçõeschanges

PT Criar um repositório do Git Copiar seu repositório do Git e adicionar arquivos Puxar as alterações do seu repositório do Git no Bitbucket Cloud Usar uma ramificação do Git para mesclar um arquivo

EN Create a Git repository Copy your Git repository and add files Pull changes from your Git repository on Bitbucket Cloud Use a Git branch to merge a file

portuguêsinglês
copiarcopy
seuyour
adicionaradd
alteraçõeschanges
bitbucketbitbucket
cloudcloud
usaruse
ramificaçãobranch

PT Criar um repositório do Git Copiar seu repositório do Git e adicionar arquivos Puxar as alterações do seu repositório do Git no Bitbucket Cloud Usar uma ramificação do Git para mesclar um arquivo

EN Create a Git repository Copy your Git repository and add files Pull changes from your Git repository on Bitbucket Cloud Use a Git branch to merge a file

portuguêsinglês
copiarcopy
seuyour
adicionaradd
alteraçõeschanges
bitbucketbitbucket
cloudcloud
usaruse
ramificaçãobranch

PT Inspecionar repositório: git log Registro avançado do Git: filtrar o histórico de commits Registro avançado do Git: formatação da saída do log Tutoriais avançados do Git: visão geral

EN Inspecting a repository: git log Advanced Git log: Filtering the Commit History Advanced Git log: Formatting Log Output Advanced Git Tutorials: Overview

portuguêsinglês
inspecionarinspecting
repositóriorepository
filtrarfiltering
othe
formataçãoformatting
saídaoutput
tutoriaistutorials

PT O Git tem sua própria sintaxe de URL, que é usada para passar locais de repositório remoto para os comandos do Git. Como o git clone é mais usado em repositórios remotos, a gente vai examinar a sintaxe de URL do Git aqui.

EN Git has its own URL syntax which is used to pass remote repository locations to Git commands. Because git clone is most commonly used on remote repositories we will examine Git URL syntax here.  

portuguêsinglês
gitgit
sintaxesyntax
urlurl
locaislocations
comandoscommands
examinarexamine
cloneclone

PT Um protocolo exclusivo para o Git. O Git vem com um daemon que roda na porta (9418). O protocolo é semelhante ao SSH, porém NÃO TEM AUTENTICAÇÃO. git://host.xz[:port]/path/to/repo.git/

EN A protocol unique to git. Git comes with a daemon that runs on port (9418). The protocol is similar to SSH however it has NO AUTHENTICATION. git://host.xz[:port]/path/to/repo.git/  

portuguêsinglês
protocoloprotocol
exclusivounique
gitgit
portaport
semelhantesimilar
sshssh
hosthost
daemondaemon

PT Outros fluxos de trabalho do Git, como o Git Forking Workflow e o Gitflow Workflow, são focados em repositórios e podem aproveitar o fluxo de trabalho do branch de recurso do Git para gerenciar modelos de branch

EN Other Git workflows like the Git Forking Workflow and the Gitflow Workflow are repo focused and can leverage the Git Feature Branch Workflow to manage their branching models

portuguêsinglês
outrosother
gitgit
gitflowgitflow
sãoare
podemcan
aproveitarleverage
branchbranch
recursofeature
modelosmodels

PT Por esse motivo, o comando git branch é muito integrado com os comandos git checkout e git merge.

EN For this reason, git branch is tightly integrated with the git checkout and git merge commands.

portuguêsinglês
motivoreason
branchbranch
integradointegrated
checkoutcheckout

PT Observe que isso apenas cria a nova ramificação. Para começar a adicionar confirmações a ela, é necessário selecionar com git checkout e, em seguida, usar os comandos git add e git commit padrão.

EN Note that this only creates the new branch. To start adding commits to it, you need to select it with git checkout, and then use the standard git add and git commit commands. 

portuguêsinglês
observenote
ramificaçãobranch
necessárioneed
checkoutcheckout
comandoscommands
padrãostandard

PT Diga ao Git para rastrear o novo arquivo locations.txt usando o comando git add. Assim como quando você cria um arquivo, o comando git add não retorna nada quando você o insere corretamente.

EN Tell Git to track your new locations.txt file using the git add command. Just like when you created a file, the git add command doesn't return anything when you enter it correctly.

portuguêsinglês
digatell
gitgit
locationslocations
txttxt
comandocommand
addadd
criacreated
retornareturn
corretamentecorrectly

PT O git commit faz um commit do instantâneo preparado no histórico do projeto. Combinado com git add, esse processo define o fluxo de trabalho básico para todos os usuários do Git.

EN The git commit takes the staged snapshot and commits it to the project history. Combined with git add, this process defines the basic workflow for all Git users.

portuguêsinglês
instantâneosnapshot
históricohistory
addadd
definedefines
básicobasic
usuáriosusers

PT Há várias maneiras de instalar o Git em um Mac. Na verdade, se você instalou o Xcode (ou suas ferramentas de linha de comando), o Git pode já estar instalado. Para saber, abra um terminal e digite git --version.

EN There are several ways to install Git on a Mac. In fact, if you've installed XCode (or it's Command Line Tools), Git may already be installed. To find out, open a terminal and enter git --version.

portuguêsinglês
maneirasways
gitgit
macmac
verdadefact
seif
ouor
ferramentastools
podemay
terminalterminal
digiteenter

PT A Apple mantém e lança a própria bifurcação do Git, mas tende a ficar várias versões atrás do Git convencional. Talvez você queira instalar uma versão mais recente do Git usando um dos métodos abaixo:

EN Apple actually maintain and ship their own fork of Git, but it tends to lag behind mainstream Git by several major versions. You may want to install a newer version of Git using one of the methods below:

portuguêsinglês
appleapple
gitgit
tendetends
usandousing
métodosmethods

PT Para aprender como usar o Git com o Sourcetree (e como hospedar seus repositórios Git no Bitbucket) você pode seguir nosso Tutorial de Git com Bitbucket e Sourcetree.

EN To learn how to use Git with Sourcetree (and how to host your Git repositories on Bitbucket) you can follow our comprehensive Git tutorial with Bitbucket and Sourcetree.

portuguêsinglês
gitgit
hospedarhost
repositóriosrepositories
bitbucketbitbucket
tutorialtutorial

PT Para aprender como usar o Git com o Sourcetree (e como hospedar seus repositórios Git no Bitbucket), você pode seguir o Tutorial de Git com Bitbucket e Sourcetree.

EN To learn how to use Git with Sourcetree (and how to host your Git repositories on Bitbucket) you can follow our comprehensive Git tutorial with Bitbucket and Sourcetree. 

portuguêsinglês
gitgit
hospedarhost
repositóriosrepositories
bitbucketbitbucket
tutorialtutorial

PT Para referência mais aprofundada sobre a funcionalidade do git clone, consulte a documentação oficial do Git. Exemplos práticos do git clone também são abordados no guia de configuração do repositório.

EN For further, deeper reference on git clone functionality, consult the official Git documentation. We also cover practical examples of git clone in our setting up a repository guide.

portuguêsinglês
referênciareference
funcionalidadefunctionality
gitgit
consulteconsult
oficialofficial
exemplosexamples
repositóriorepository
cloneclone

PT GitOps pode ser visto como uma forma de implementar infraestrutura como código que envolve a sincronização contínua e aplicação de código de infraestrutura do Git em vários ambientes

EN GitOps can be seen as a way of implementing infrastructure as code that involves continuously synchronizing and applying infrastructure code from Git into various environments

portuguêsinglês
vistoseen
formaway
implementarimplementing
infraestruturainfrastructure
códigocode
envolveinvolves
contínuacontinuously
aplicaçãoapplying
gitgit
ambientesenvironments

PT Torne o Bitbucket seu sandbox Git com tutoriais que vão acelerá-lo com o Git e ajudá-lo a criar fluxos de trabalho eficientes.

EN Make Bitbucket your Git sandbox with tutorials that bring you up to speed with Git and help you build effective workflows.

portuguêsinglês
bitbucketbitbucket
gitgit
tutoriaistutorials
eficienteseffective
fluxos de trabalhoworkflows

PT O Sourcetree simplifica o modo como você interage com seus repositórios Git, para que você se concentre no código. Visualize e gerencie seus repositórios com a GUI Git do Sourcetree.

EN Sourcetree simplifies how you interact with your Git repositories so you can focus on coding. Visualize and manage your repositories through Sourcetree's simple Git GUI.

portuguêsinglês
simplificasimplifies
interageinteract
repositóriosrepositories
gitgit
códigocoding
visualizevisualize
gerenciemanage
guigui

PT Não é apenas uma GUI do Git. O Sourcetree coloca o poder do Git em destaque em uma interface fácil de usar.

EN Not just a Git GUI. Sourcetree places the power of Git front and center in an easy-to-use interface.

portuguêsinglês
gitgit
colocaplaces
poderpower
usaruse

PT Se você estiver interessado no acesso ao git ou snapshots do git, você pode encontrá-los na páagina do desenvolvimento.

EN Should you be interested in git access or git snapshots, you can find them on development page.

portuguêsinglês
interessadointerested
noin
acessoaccess
gitgit
ouor
snapshotssnapshots
desenvolvimentodevelopment

PT Etapa 9: A ativação do Git permitirá que você copie os arquivos do seu site de um repositório Git, em vez de upload através do Plesk ou FTP.

EN Step 9: Enabling Git will allow you to copy your site's files from a Git repository rather than upload through Plesk or FTP.

portuguêsinglês
etapastep
gitgit
copiecopy
sitesite
uma
uploadupload
ouor
ftpftp
ss
pleskplesk

PT O Gitflow é um fluxo de trabalho legado do Git que no começo era uma estratégia inovadora e revolucionária para gerenciar ramificações do Git

EN Gitflow is a legacy Git workflow that was originally a disruptive and novel strategy for managing Git branches

portuguêsinglês
gitflowgitflow
legadolegacy
gitgit
estratégiastrategy

PT Após instalar o git-flow, você pode usar no projeto executando git flow init

EN On windows you will need to download and install git-flow. After installing git-flow you can use it in your project by executing git flow init

portuguêsinglês
apósafter
usaruse
noin
projetoproject
executandoexecuting
gitgit
flowflow

PT O comando git flow init é uma extensão do comando git init padrão e não faz alterações no repositório, apenas cria ramificações para você.

EN The git flow init command is an extension of the default git init command and doesn't change anything in your repository other than creating branches for you.

portuguêsinglês
comandocommand
gitgit
flowflow
éis
extensãoextension
padrãodefault
alteraçõeschange
repositóriorepository
criacreating

PT Ao utilizar a biblioteca de extensão do git-flow, executar git flow init no repositório existente vai criar uma ramificação de desenvolvimento:

EN When using the git-flow extension library, executing git flow init on an existing repo will create the develop branch:

portuguêsinglês
bibliotecalibrary
extensãoextension
gitgit
flowflow
repositóriorepo
existenteexisting
ramificaçãobranch

PT O Sourcetree simplifica o modo como você interage com seus repositórios Git, para que você se concentre no código. Visualize e gerencie seus repositórios com a GUI Git do Sourcetree.

EN Sourcetree simplifies how you interact with your Git repositories so you can focus on coding. Visualize and manage your repositories through Sourcetree's simple Git GUI.

portuguêsinglês
simplificasimplifies
interageinteract
repositóriosrepositories
gitgit
códigocoding
visualizevisualize
gerenciemanage
guigui

PT Não é apenas uma GUI do Git. O Sourcetree coloca o poder do Git em destaque em uma interface fácil de usar.

EN Not just a Git GUI. Sourcetree places the power of Git front and center in an easy-to-use interface.

portuguêsinglês
gitgit
colocaplaces
poderpower
usaruse

PT Cole o comando que você copiou do Bitbucket (seria algo assim): git clone https://username@bitbucket.org/teamsinspace/documentation-test.git

EN Paste the command you copied from Bitbucket (would like something like this): git clone https://username@bitbucket.org/teamsinspace/documentation-test.git

portuguêsinglês
colepaste
comandocommand
vocêyou
bitbucketbitbucket
algosomething
gitgit
orgorg
copioucopied
cloneclone
httpshttps

PT Depois de criado, faça o fetch e o checkout da ramificação no sistema local. O Bitbucket mostra automaticamente o comando necessário, e seria algo assim: git fetch && git checkout

EN Once created, fetch and checkout the branch from your local system. Bitbucket will automatically show you the command needed, and it will look something like this: git fetch && git checkout

portuguêsinglês
criadocreated
othe
checkoutcheckout
ramificaçãobranch
sistemasystem
locallocal
bitbucketbitbucket
mostrashow
automaticamenteautomatically
comandocommand
necessárioneeded
seriawill
algosomething
gitgit
ampamp

PT Crie uma ramificação usando o comando Git branch. git branch

EN Create a branch using the Git branch command. git branch

portuguêsinglês
criecreate
usandousing
comandocommand
gitgit

PT Com o Git LFS, arquivos grandes são mantidos em armazenamento paralelo ao código, e referências leves são armazenadas no repositório do Git

EN Using Git LFS, large files are kept in parallel storage to your code, and lightweight references are stored in your Git repository

portuguêsinglês
gitgit
grandeslarge
sãoare
mantidoskept
paraleloparallel
códigocode
referênciasreferences
leveslightweight
lfslfs

PT Como você pode ver, é possível replicar um ambiente de desenvolvimento tradicional do Subversão usando apenas alguns comandos do Git. Isso é excelente para as equipes de transição fora do SVN, mas não aproveita a natureza distribuída do Git.

EN As you can see, it’s possible to replicate a traditional Subversion development environment using only a handful of Git commands. This is great for transitioning teams off of SVN, but it doesn’t leverage the distributed nature of Git.

portuguêsinglês
replicarreplicate
desenvolvimentodevelopment
tradicionaltraditional
comandoscommands
gitgit
excelentegreat
equipesteams
transiçãotransitioning
svnsvn
distribuídadistributed

PT O fluxo de trabalho da ramificação de recursos do Git é um fluxo de trabalho que pode ser aproveitado por outros fluxos de trabalho de alto nível do Git

EN The Git Feature Branch Workflow is a composable workflow that can be leveraged by other high-level Git workflows

portuguêsinglês
ramificaçãobranch
recursosfeature
gitgit
outrosother
altohigh
nívellevel

PT Discutimos outros fluxos de trabalho do Git na página de visão geral do fluxo de trabalho do Git

EN We discussed other Git workflows on the Git workflow overview page

portuguêsinglês
outrosother
gitgit

PT Os fluxos de trabalho Gitflow e o Git Forking Workflows como de costume usam um fluxo de trabalho da ramificação de recursos do Git em relação a seus modelos de ramificação.

EN The Gitflow, and Git Forking Workflows traditionally use a Git Feature Branch Workflow in regards to their branching models.

portuguêsinglês
gitflowgitflow
gitgit
usamuse
uma
ramificaçãobranch
recursosfeature
modelosmodels

PT Utilizar o git rebase durante os estágios de revisão e mesclagem de uma ramificação de recursos vai criar um histórico coeso do Git de mesclagens de recursos

EN Utilizing git rebase during the review and merge stages of a feature branch will create enforce a cohesive Git history of feature merges

portuguêsinglês
utilizarutilizing
estágiosstages
revisãoreview
ramificaçãobranch
recursosfeature
históricohistory
coesocohesive
rebaserebase

PT Este documento é uma revisão mais profunda do comando git branch e uma discussão do modelo geral de ramificação do Git

EN This document is an in-depth review of the git branch command and a discussion of the overall Git branching model

portuguêsinglês
documentodocument
profundadepth
comandocommand
gitgit
discussãodiscussion
modelomodel
geraloverall

PT Neste documento, discutimos o comportamento da ramificação do Git e o comando git branch

EN In this document we discussed Git's branching behavior and the git branch command

portuguêsinglês
documentodocument
comportamentobehavior
gitgit
comandocommand

PT Saiba mais sobre as operações de ramificação git checkout, como alternar e fazer merge das ramificações, na página do git checkout.

EN Learn more about git checkout branch operations; such as switching branches and merging branches, on the git checkout page.

portuguêsinglês
operaçõesoperations
ramificaçãobranch
gitgit
checkoutcheckout
páginapage

PT Aprenda a usar o Git com o Bitbucket Cloud | Atlassian Git Tutorial

EN Learn Git with Bitbucket Cloud | Atlassian Git Tutorial

portuguêsinglês
aprendalearn
usarwith
gitgit
bitbucketbitbucket
cloudcloud
atlassianatlassian
tutorialtutorial

PT O comando git add move as alterações do diretório de trabalho para a área de staging do Git. A área de staging é onde você prepara um snapshot de um conjunto de alterações antes de fazer o commit no histórico oficial.

EN The git add command moves changes from the working directory to the Git staging area. The staging area is where you prepare a snapshot of a set of changes before committing them to the official history.

portuguêsinglês
comandocommand
gitgit
addadd
alteraçõeschanges
diretóriodirectory
áreaarea
históricohistory
oficialofficial

PT A capacidade do Git de se comunicar com repositórios remotos (no seu caso, o Bitbucket é o repositório remoto) é a base de cada fluxo de trabalho de colaboração baseado em Git.

EN Git's ability to communicate with remote repositories (in your case, Bitbucket is the remote repository) is the foundation of every Git-based collaboration workflow.

portuguêsinglês
capacidadeability
gitgit
bitbucketbitbucket
éis
colaboraçãocollaboration

PT O comando git checkout funciona lado a lado com a ramificação git

EN The git checkout command works hand-in-hand with git branch

portuguêsinglês
comandocommand
gitgit
checkoutcheckout
funcionaworks
ramificaçãobranch

Mostrando 50 de 50 traduções