Traduzir "branch de recurso" para inglês

Mostrando 50 de 50 traduções da frase "branch de recurso" de português para inglês

Tradução de português para inglês de branch de recurso

português
inglês

PT Use um branch separado para cada recurso ou problema em que você trabalha. Depois de criar um branch, verifique-o no local para que todas as alterações que você fizer sejam nesse branch.

EN Use a separate branch for each feature or issue you work on. After creating a branch, check it out locally so that any changes you make will be on that branch.

portuguêsinglês
branchbranch
separadoseparate
recursofeature
ouor
problemaissue
vocêyou
alteraçõeschanges
verifiquecheck

PT É uma boa ideia enviar o branch do recurso para o repositório central. Isso serve como um backup conveniente, ao colaborar com outros desenvolvedores, e lhes daria acesso para visualizar commits para o novo branch.

EN It’s a good idea to push the feature branch up to the central repository. This serves as a convenient backup, when collaborating with other developers, this would give them access to view commits to the new branch.

portuguêsinglês
ideiaidea
branchbranch
recursofeature
repositóriorepository
centralcentral
serveserves
backupbackup
convenienteconvenient
colaborarcollaborating
outrosother
desenvolvedoresdevelopers
dariawould give
acessoaccess
commitscommits

PT Antes de começar a desenvolver um recurso, Mary precisa de um branch isolado para trabalhar. Ela pode solicitar um novo branch com o seguinte comando:

EN Before she starts developing a feature, Mary needs an isolated branch to work on. She can request a new branch with the following command:

portuguêsinglês
desenvolverdeveloping
recursofeature
marymary
branchbranch
isoladoisolated
novonew
comandocommand
começarstarts

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 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 Este fluxo de trabalho não requer nenhum outro branch além do branch main.

EN This workflow doesn’t require any other branches besides main.

portuguêsinglês
estethis
requerrequire
outroother
alémbesides
mainmain

PT Para publicar as alterações no projeto oficial, os desenvolvedores enviam o branch main local ao repositório central. É o equivalente de svn commit, exceto que ele adiciona todos os commits locais que ainda não estão no branch main central.

EN To publish changes to the official project, developers "push" their local main branch to the central repository. This is the equivalent of svn commit, except that it adds all of the local commits that aren’t already in the central main branch.

portuguêsinglês
alteraçõeschanges
projetoproject
oficialofficial
desenvolvedoresdevelopers
branchbranch
mainmain
repositóriorepository
centralcentral
equivalenteequivalent
svnsvn
commitcommit
excetoexcept
adicionaadds
commitscommits

PT O argumento main diz ao Git para tentar fazer com que o branch main de origin se pareça com o branch main local

EN The main argument tells Git to try to make the origin’s main branch look like his local main branch

portuguêsinglês
argumentoargument
mainmain
diztells
gitgit
tentartry
branchbranch
locallocal

PT O argumento -branch permite que você especifique uma ramificação específica para clonar, em vez da ramificação que o HEAD remoto está apontando, em geral, o branch principal

EN The -branch argument lets you specify a specific branch to clone instead of the branch the remote HEAD is pointing to, usually the main branch

portuguêsinglês
argumentoargument
permitelets
vocêyou
especifiquespecify
específicaspecific
clonarclone
apontandopointing

PT Para obter informação sobre privacidade, aceda: https://branch.io/policies/#privacy Para cancelar, visite: https://branch.app.link/optout

EN For privacy information, go to: https://branch.io/policies/#privacy To opt-out, visit: https://branch.app.link/optout

PT Nesse branch, edite, prepare e faça os commits das alterações da maneira usual, construindo o recurso com o número de commits necessários

EN On this branch, edit, stage, and commit changes in the usual fashion, building up the feature with as many commits as necessary

portuguêsinglês
branchbranch
editeedit
commitscommits
alteraçõeschanges
construindobuilding
recursofeature
maneirafashion

PT A seguir, é apresentado um exemplo do tipo de cenário no qual um fluxo de trabalho de branch de recurso é usado

EN The following is an example of the type of scenario in which a feature branching workflow is used

portuguêsinglês
exemploexample
cenárioscenario
recursofeature
usadoused

PT Neste documento, discutimos o fluxo de trabalho do branch de recurso do Git

EN In this document, we discussed the Git Feature Branch Workflow

portuguêsinglês
documentodocument
branchbranch
recursofeature
gitgit

PT Este documento demonstrou um exemplo de código de alto nível e um exemplo fictício para implementar o fluxo de trabalho do branch de recurso no Git

EN This document demonstrated a high-level code example and fictional example for implementing the Git Feature Branch Workflow

portuguêsinglês
documentodocument
demonstroudemonstrated
exemploexample
códigocode
altohigh
nívellevel
implementarimplementing
branchbranch
recursofeature
gitgit

PT Algumas associações importantes a serem feitas com o fluxo de trabalho do branch de recurso do Git são:

EN Some key associations to make with the Feature Branch Workflow are:

portuguêsinglês
associaçõesassociations
importanteskey
branchbranch
recursofeature

PT Quando um navegador solicita um recurso, o servidor que fornece o recurso pode dizer ao navegador quanto tempo ele deve armazenar o recurso temporariamente em cache

EN When a browser requests a resource, the server providing the resource can tell the browser how long it should temporarily store or cache the resource

portuguêsinglês
uma
navegadorbrowser
recursoresource
forneceproviding
temporariamentetemporarily

PT Quando usado com uma infraestrutura de "branch por ambiente", as alterações são promovidas de um ambiente para o outro por meio de merges do código

EN When used with a "branch per environment" infrastructure, changes are promoted from one environment to the next by merging code

portuguêsinglês
usadoused
infraestruturainfrastructure
branchbranch
alteraçõeschanges
códigocode

PT Na estrutura interna, o comando git checkout apenas atualiza o HEAD para apontar para o branch ou commit especificado

EN Internally, the git checkout command simply updates the HEAD to point to either the specified branch or commit

portuguêsinglês
internainternally
comandocommand
checkoutcheckout
apenassimply
atualizaupdates
headhead
apontarpoint
branchbranch

PT Ao apontar para um branch, o Git não reclama, mas quando você confirma um commit, ela muda para o estado "HEAD desvinculado".

EN When it points to a branch, Git doesn't complain, but when you check out a commit, it switches into a “detached HEAD” state.

portuguêsinglês
branchbranch
headhead

PT Michelle Branch (2 de Julho de 1983, Sedona, Arizona) é uma cantora, compositora e guitarrista norte-americana

EN Michelle Jacquet DeSevren Branch (named after the song "Michelle" by The Beatles) was born in Phoenix, Arizona, United States on the 2nd of July, 1983

portuguêsinglês
michellemichelle
branchbranch
julhojuly
arizonaarizona

PT Os SonicWall Switches fornecem comutação Ethernet segura para um escritório remoto ou SD-Branch, usando gerenciamento de firewall por meio do Network Security Manager

EN SonicWall Switches provide secure Ethernet switching for a remote office/SD-Branch office using firewall management via Network Security Manager

portuguêsinglês
sonicwallsonicwall
switchesswitches
fornecemprovide
comutaçãoswitching
ethernetethernet
escritóriooffice
remotoremote
firewallfirewall
networknetwork

PT O SonicWall Secure SD-Branch integra firewalls de próxima geração, switches de acesso à rede, access points WiFi seguros, segurança de endpoint, segurança de aplicação na nuvem e gerenciamento em um painel único de controle.

EN SonicWall Secure SD-Branch integrates next-generation firewalls, network access switches, secure WiFi access points, endpoint security, cloud application security and single-pane-of-glass management.

portuguêsinglês
sonicwallsonicwall
integraintegrates
firewallsfirewalls
próximanext
geraçãogeneration
switchesswitches
redenetwork
wifiwifi
endpointendpoint
aplicaçãoapplication
nuvemcloud
painelpane

PT SonicWall reinventa a conectividade nas filiais com Secure SD-Branch e Switches

EN SABMD – Medium-enterprise retail company

portuguêsinglês
comcompany

PT Melhora o desempenho das operações Branch e Snapshot.

EN Improves performance of Branch and Snapshot operations.

portuguêsinglês
melhoraimproves
desempenhoperformance
operaçõesoperations
branchbranch

PT Na estrutura interna, o comando git checkout apenas atualiza o HEAD para apontar para o branch ou commit especificado

EN Internally, the git checkout command simply updates the HEAD to point to either the specified branch or commit

portuguêsinglês
internainternally
comandocommand
checkoutcheckout
apenassimply
atualizaupdates
headhead
apontarpoint
branchbranch

PT Ao apontar para um branch, o Git não reclama, mas quando você confirma um commit, ela muda para o estado "HEAD desvinculado".

EN When it points to a branch, Git doesn't complain, but when you check out a commit, it switches into a “detached HEAD” state.

portuguêsinglês
branchbranch
headhead

PT Se essas condições não forem atendidas, o Bitbucket não vai permitir o merge da solicitação pull. Você também pode redefinir as aprovações quando o branch de origem for modificado.

EN If these conditions aren’t met Bitbucket won’t allow the pull request to be merged. You can also reset approvals when the source branch is modified.

portuguêsinglês
bitbucketbitbucket
solicitaçãorequest
pullpull
redefinirreset
aprovaçõesapprovals
branchbranch
origemsource
modificadomodified

PT As permissões de implementação dão às equipes controle sobre quem pode implementar em um determinado ambiente e de qual branch podem fazer a implementação

EN Deployment permissions give teams control over who can deploy to a given environment, and which branch they can deploy from

portuguêsinglês
permissõespermissions
equipesteams
controlecontrol
ambienteenvironment
branchbranch

PT Em vez de tronco, a ramificação de desenvolvimento padrão é chamada de branch main e todas as alterações recebem commit nesta ramificação

EN Instead of trunk, the default development branch is called main and all changes are committed into this branch

portuguêsinglês
troncotrunk
desenvolvimentodevelopment
padrãodefault
chamadacalled
mainmain
alteraçõeschanges
em vez deinstead

PT A ideia central por trás do Fluxo de trabalho de ramificação de recursos é que todo desenvolvimento de recursos deve ocorrer em uma ramificação dedicada em vez de no branch main

EN The core idea behind the Feature Branch Workflow is that all feature development should take place in a dedicated branch instead of the main branch

portuguêsinglês
ideiaidea
centralcore
recursosfeature
desenvolvimentodevelopment
ocorrertake place
dedicadadedicated
mainmain
em vez deinstead

PT Assim, o branch main nunca deve conter código quebrado, o que é uma enorme vantagem para ambientes de integração contínua.

EN It also means the main branch should never contain broken code, which is a huge advantage for continuous integration environments. 

portuguêsinglês
assimalso
branchbranch
mainmain
nuncanever
contercontain
códigocode
quebradobroken
enormehuge
vantagemadvantage
ambientesenvironments
integraçãointegration
contínuacontinuous

PT Um fluxo de trabalho que teste uma ramificação antes de permitir que ela seja mesclada no branch main é um exemplo

EN A workflow that tests a branch before allowing it to be merged into the main branch is an example

portuguêsinglês
testetests
permitirallowing
mainmain
exemploexample

PT Se você planeja lançar várias vezes por dia, vai querer manter o branch main estável

EN If you plan to release multiple times a day, you will want to keep your main branch stable

portuguêsinglês
seif
planejaplan
lançarrelease
váriasmultiple
branchbranch
mainmain

PT Encapsular o desenvolvimento de recursos também permite aproveitar solicitações pull, que são uma maneira de iniciar discussões em torno de um branch

EN Encapsulating feature development also makes it possible to leverage pull requests, which are a way to initiate discussions around a branch

portuguêsinglês
desenvolvimentodevelopment
recursosfeature
aproveitarleverage
solicitaçõesrequests
pullpull
maneiraway
iniciarinitiate
discussõesdiscussions
branchbranch

PT Você pode pensar em solicitações pull como uma discussão dedicada a um branch específico

EN You can think of pull requests as a discussion dedicated to a particular branch

portuguêsinglês
vocêyou
pensarthink
pullpull
discussãodiscussion
branchbranch
específicoparticular

PT Enquanto Mary e Bill estão trabalhando no marys-feature e discutindo isso na solicitação pull, John está fazendo a mesma coisa com seu próprio branch de recursos

EN While Mary and Bill are working on marys-feature and discussing it in her pull request, John is doing the exact same thing with his own feature branch

portuguêsinglês
marymary
billbill
discutindodiscussing
solicitaçãorequest
pullpull
johnjohn
coisathing
branchbranch
recursosfeature

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 O comando git branch permite criar, listar, renomear e excluir ramificações

EN The git branch command lets you create, list, rename, and delete branches

portuguêsinglês
othe
comandocommand
gitgit
branchbranch
listarlist
renomearrename
excluirdelete

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 Listar todas as ramificações no seu repositório. Isso é sinônimo de git branch --list.

EN List all of the branches in your repository. This is synonymous with git branch --list.

portuguêsinglês
listarlist
repositóriorepository
gitgit
branchbranch

PT O comando git branch também funciona em ramificações remotas

EN The git branch command also works on remote branches

portuguêsinglês
othe
comandocommand
gitgit
branchbranch
tambémalso
funcionaworks
remotasremote

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 As funções principais dos comandos git branch são criar, listar, renomear e excluir ramificações

EN The git branch commands primary functions are to create, list, rename and delete branches

portuguêsinglês
principaisprimary
comandoscommands
gitgit
branchbranch
sãoare
listarlist
renomearrename
excluirdelete

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 O modelo de colaboração do Git dá a cada desenvolvedor sua própria cópia do repositório, completa com seu próprio histórico local e estrutura de branch

EN Git's collaboration model gives every developer their own copy of the repository, complete with its own local history and branch structure

portuguêsinglês
colaboraçãocollaboration
gitgit
desenvolvedordeveloper
cópiacopy
repositóriorepository
históricohistory
locallocal
estruturastructure
branchbranch

PT Como você está criando uma ramificação para trabalhar em algo novo, toda vez que criar uma nova ramificação (com git branch), você quer ter certeza de conferir (com git checkout) se vai usá-la

EN Because you are creating a branch to work on something new, every time you create a new branch (with git branch), you want to make sure to check it out (with git checkout) if you're going to use it

portuguêsinglês
veztime
gitgit
certezasure
checkoutcheckout
seif

PT Você vê a linha On branch future-plans? Se você inseriu o git status antes, a linha estava na ramificação principal porque você só tinha uma ramificação principal

EN Notice the On branch future-plans line? If you entered git status previously, the line was on branch main because you only had the one main branch

portuguêsinglês
vocêyou
linhaline
seif
gitgit

PT Você pode configurar seu site do GitHub Pages para ser publicado quando alterações são enviadas por push a um branch específico ou pode escrever um fluxo de trabalho do GitHub Actions para publicar seu site.

EN You can configure your GitHub Pages site to publish when changes are pushed to a specific branch, or you can write a GitHub Actions workflow to publish your site.

portuguêsinglês
configurarconfigure
githubgithub
alteraçõeschanges
branchbranch
específicospecific
ouor
actionsactions

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 Uma maneira poderosa de integrar alterações de ramificações divergentes. Após bifurcar o histórico do projeto com o git branch, o git merge permite unificar o histórico de novo.

EN A powerful way to integrate changes from divergent branches. After forking the project history with git branch, git merge lets you put it back together again.

portuguêsinglês
maneiraway
poderosapowerful
alteraçõeschanges
históricohistory
projetoproject
branchbranch
permitelets
de novoagain

Mostrando 50 de 50 traduções