Traduce "creëer een branch" in Inglese

Mustrà 50 di 50 traduzzioni di a frasa "creëer een branch" da Ulandesa à Inglese

Traduzioni di creëer een branch

"creëer een branch" in Ulandesa pò esse traduttu in i seguenti Inglese parolle / frasi:

creëer all and create any build business can create creating design is look make of of the out process products project style system templates that to to create work
een 4 a a few a single able about access add address after all along also amount an and and the another any app are around as at at the available be be able to because been before being best better between big bit build but by can case certain complete could create creating customer day device different do domain down during each easy even every excellent few first for for the free from from the full get go good group has have here high home how however human i if in in the incoming individual into is it it has it is its it’s just know large light like little live ll location look low made make makes may means might more more than most much must need needs new no not now number number of of of the on on the once one only open or other our out over own part people person personal place private process program provide re really right room s same see service set should similar simple simply single site small so software some something specific start stay such such as sure system take team text than that that you the their them then there there is these they this this is three through time to to be to create to make to the to us together tool top true two unique up up to us use used users uses using value very via want was way we web website well what when where whether which while who will will be with within without work would you you are you can you have you want you will be your yourself you’re
branch branch

Traduzzione di Ulandesa à Inglese di creëer een branch

Ulandesa
Inglese

NL Met het argument -branch kun je een specifieke branch opgeven om te klonen in plaats van de branch waarnaar de externe HEAD verwijst (meestal de hoofd-branch). Daarnaast kun je voor hetzelfde effect een tag doorgeven in plaats van de branch.

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. In addition you can pass a tag instead of branch for the same effect.

Ulandesa Inglese
branch branch
klonen clone
externe remote
daarnaast in addition
effect effect
tag tag
in plaats van instead

NL De eerste stap is het aanvullen van de standaard main-branch met een develop-branch. Een eenvoudige manier om dit te doen, is als volgt. Eén ontwikkelaar maakt lokaal een lege develop-branch en pusht deze naar de server:

EN The first step is to complement the default main with a develop branch. A simple way to do this is for one developer to create an empty develop branch locally and push it to the server:

Ulandesa Inglese
stap step
aanvullen complement
standaard default
manier way
ontwikkelaar developer
lokaal locally
server server
main main
branch branch

NL Een branch aanmaken met de branch-opdracht in Git. git branch

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

Ulandesa Inglese
branch branch
aanmaken create
git git
opdracht command

NL Maak een overzicht van de branches voor deze repository. Je ziet de standaard branch-master en de nieuwe branch die je hebt gemaakt. git branch

EN List the branches for this repository. Youll see the default branch master, and the new branch you created. git branch

Ulandesa Inglese
branches branches
repository repository
standaard default
branch branch
git git

NL Een branch aanmaken met de branch-opdracht in Git. git branch

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

Ulandesa Inglese
branch branch
aanmaken create
git git
opdracht command

NL Maak een overzicht van de branches voor deze repository. Je ziet de standaard branch-master en de nieuwe branch die je hebt gemaakt. git branch

EN List the branches for this repository. Youll see the default branch master, and the new branch you created. git branch

Ulandesa Inglese
branches branches
repository repository
standaard default
branch branch
git git

NL Een branch aanmaken met de branch-opdracht in Git. git branch

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

Ulandesa Inglese
branch branch
aanmaken create
git git
opdracht command

NL Maak een overzicht van de branches voor deze repository. Je ziet de standaard main-branch en de nieuwe branch die je hebt gemaakt. Git-branch

EN List the branches for this repository. Youll see the default branch main, and the new branch you created. git branch

Ulandesa Inglese
branches branches
repository repository
standaard default
branch branch
main main
git git

NL Voordat ze code begint te schrijven, moet Mary een nieuwe branch aanmaken voor de functie. Deze branch zal ze gebruiken als bron-branch van de pull-aanvraag.

EN Before she starts writing any code, Mary needs to create a new branch for the feature. This branch is what she will use as the source branch of the pull request.

Ulandesa Inglese
begint starts
mary mary
branch branch
functie feature
aanvraag request

NL Een repository aanmaken Een branch klonen en iets wijzigen in een nieuwe branch Als je de opdrachtregel gebruikt Als je Sourcetree gebruikt Een pull-aanvraag maken en je wijziging samenvoegen

EN Create a repository Clone and make a change on a new branch If you're using command line If you're using Sourcetree Create a pull request to merge your change

NL Door pull-aanvragen aan de Gitflow-workflow toe te voegen, kunnen ontwikkelaars op een handige plek praten over een release-branch of een onderhouds-branch terwijl ze eraan werken.

EN Adding pull requests to the Gitflow Workflow gives developers a convenient place to talk about a release branch or a maintenance branch while theyre working on it.

Ulandesa Inglese
voegen adding
ontwikkelaars developers
handige convenient
plek place
of or
eraan on it
werken working
workflow workflow
release release
branch branch

NL De standaard ontwikkelingsbranch. Als je een Git-repository maakt, wordt er een branch met de naam 'master' gemaakt. Deze wordt de actieve branch.

EN The default development branch. Whenever you create a git repository, a branch named "main" is created, and becomes the active branch.

Ulandesa Inglese
standaard default
branch branch
naam named
actieve active
git git
repository repository

NL De standaard ontwikkelingsbranch. Als je een Git-repository maakt, wordt er een branch met de naam 'master' gemaakt. Deze wordt de actieve branch.

EN The default development branch. Whenever you create a git repository, a branch named "main" is created, and becomes the active branch.

Ulandesa Inglese
standaard default
branch branch
naam named
actieve active
git git
repository repository

NL Deze branch zal de volledige geschiedenis van het project bevatten; main bevat op zijn beurt een verkorte versie. Andere ontwikkelaars moeten nu de centrale repository klonen en een tracking-branch aanmaken voor develop.

EN This branch will contain the complete history of the project, whereas main will contain an abridged version. Other developers should now clone the central repository and create a tracking branch for develop.

Ulandesa Inglese
branch branch
geschiedenis history
main main
ontwikkelaars developers
centrale central
repository repository
klonen clone
aanmaken create
tracking tracking

NL Het maken van release-branches is een andere eenvoudige bewerking voor het maken van branches. Net als functie-branches zijn release-branches gebaseerd op de develop-branch. Een nieuwe release-branch kan op de volgende manieren worden gemaakt:

EN Making release branches is another straightforward branching operation. Like feature branches, release branches are based on the develop branch. A new release branch can be created using the following methods.

Ulandesa Inglese
eenvoudige straightforward
branches branches
als like
manieren methods
release release
branch branch

NL Net als bij het voltooien van een release-branch wordt een hotfix-branch samengevoegd in zowel main als develop.

EN Similar to finishing a release branch, a hotfix branch gets merged into both main and develop.

Ulandesa Inglese
wordt gets
samengevoegd merged
main main
release release
branch branch

NL De standaard ontwikkelingsbranch. Als je een Git-repository aanmaakt, wordt een branch met de naam 'main' aangemaakt. Deze wordt de actieve branch.

EN The default development branch. Whenever you create a git repository, a branch named "main" is created, and becomes the active branch.

Ulandesa Inglese
standaard default
branch branch
naam named
main main
aangemaakt created
actieve active
git git
repository repository

NL De standaard ontwikkelingsbranch. Als je een Git-repository aanmaakt, wordt een branch met de naam 'main' aangemaakt. Deze wordt de actieve branch.

EN The default development branch. Whenever you create a git repository, a branch named "main" is created, and becomes the active branch.

Ulandesa Inglese
standaard default
branch branch
naam named
main main
aangemaakt created
actieve active
git git
repository repository

NL Breng je wijzigingen lokaal aan en voeg ze vervolgens toe, maak commits en push ze naar de branch:git add. git commit -m "een wijziging toevoegen uit de functie-branch" git push origin

EN Make your changes locally and then add, commit, and push your changes to the  branch:git add . git commit -m "adding a change from the feature branch" git push origin

Ulandesa Inglese
lokaal locally
branch branch
git git
origin origin
je your
functie feature

NL Breng je wijzigingen lokaal aan en voeg ze vervolgens toe, maak commits en push ze naar de branch:git add. git commit -m "een wijziging toevoegen uit de functie-branch" git push origin

EN Make your changes locally and then add, commit, and push your changes to the  branch:git add . git commit -m "adding a change from the feature branch" git push origin

Ulandesa Inglese
lokaal locally
branch branch
git git
origin origin
je your
functie feature

NL Breng je wijzigingen lokaal aan en voeg ze vervolgens toe, maak commits en push ze naar de branch:git add. git commit -m "een wijziging toevoegen uit de functie-branch" git push origin

EN Make your changes locally and then add, commit, and push your changes to the  branch:git add . git commit -m "adding a change from the feature branch" git push origin

Ulandesa Inglese
lokaal locally
branch branch
git git
origin origin
je your
functie feature

NL Dit betekent dat je vier soorten informatie moet opgeven om een pull-aanvraag in te dienen: de bron-repository, de bron-branch, de doel-repository en de doel-branch.

EN This means that you need to provide 4 pieces of information to file a pull request: the source repository, the source branch, the destination repository, and the destination branch.

Ulandesa Inglese
je you
aanvraag request
bron source
repository repository
branch branch

NL De Baton Rouge Room bevindt zich in de Main Branch van de East Baton Rouge Parish Library en bestaat sinds de inzet van de River Center Branch in 1980

EN The Baton Rouge Room is in the Main Branch of the East Baton Rouge Parish Library and has existed since the dedication of the River Center Branch in 1980

Ulandesa Inglese
main main
branch branch
library library
inzet dedication
river river
center center
rouge rouge

NL Branch sluiten: selecteer of je de branch automatisch wil sluiten wanneer de pull-aanvraag wordt samengevoegd;

EN Close branch: Select if you want to automatically close the branch when the pull request is merged.

Ulandesa Inglese
branch branch
selecteer select
je you
automatisch automatically
wil want
samengevoegd merged
aanvraag request

NL Branch sluiten: selecteer of je de branch automatisch wil sluiten wanneer de pull-aanvraag wordt samengevoegd;

EN Close branch: Select if you want to automatically close the branch when the pull request is merged.

Ulandesa Inglese
branch branch
selecteer select
je you
automatisch automatically
wil want
samengevoegd merged
aanvraag request

NL De main-branch slaat de officiële versiegeschiedenis op; de branch develop dient als integratiebranch voor functies

EN The main branch stores the official release history, and the develop branch serves as an integration branch for features

Ulandesa Inglese
branch branch
dient serves
voor for
functies features
main main

NL Merk op dat functie-branches gecombineerd met de develop-branch voor alle doeleinden de functie-branch-workflow is. De Gitflow-workflow gaat echter verder.

EN Note that feature branches combined with the develop branch is, for all intents and purposes, the Feature Branch Workflow. But, the Gitflow workflow doesn’t stop there.

Ulandesa Inglese
echter but
functie feature
branches branches
branch branch
workflow workflow

NL Branch sluiten: selecteer of je de branch automatisch wil sluiten wanneer de pull-aanvraag wordt samengevoegd;

EN Close branch: Select if you want to automatically close the branch when the pull request is merged.

Ulandesa Inglese
branch branch
selecteer select
je you
automatisch automatically
wil want
samengevoegd merged
aanvraag request

NL Het resulterende formulier stelt Mary's repository automatisch in als bron-repository en vraagt haar om de bron-branch, de doel-repository en de doel-branch op te geven.

EN The resulting form automatically sets Mary’s repository as the source repository, and it asks her to specify the source branch, the destination repository, and the destination branch.

Ulandesa Inglese
formulier form
mary mary
s s
repository repository
automatisch automatically
vraagt asks
bron source
branch branch

NL Ga voor privacy-informatie naar: https://branch.io/policies/#privacy Hier kunt u zich afmelden: 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

NL Creëer een branch vanuit een Jira Software-issue en stel triggers in om tussen statussen te schakelen wanneer code wordt beoordeeld of samengevoegd.

EN Create a branch from within a Jira Software issue and set up triggers to transition between statuses when reviewing or merging code.

Ulandesa Inglese
branch branch
jira jira
triggers triggers
statussen statuses
of or

NL Creëer een branch vanuit een Jira Software-issue en stel triggers in om tussen statussen te schakelen wanneer code wordt beoordeeld of samengevoegd.

EN Create a branch from within a Jira Software issue and set up triggers to transition between statuses when reviewing or merging code.

Ulandesa Inglese
branch branch
jira jira
triggers triggers
statussen statuses
of or

NL Release met Jira Software en Bitbucket 14% vaker nieuwe versies, die naadloos worden geïntegreerd van branch tot implementatie. Creëer Bitbucket-branches vanuit Jira Software of draag issues over zonder Bitbucket te verlaten.

EN Release 14% more often with Jira Software and Bitbucket, which are seamlessly integrated from branch to deployment. Create Bitbucket branches from within Jira Software or transition issues without ever leaving Bitbucket.

Ulandesa Inglese
jira jira
bitbucket bitbucket
naadloos seamlessly
geïntegreerd integrated
branch branch
creëer create
of or
issues issues
branches branches

NL Breng met Jira Software en Bitbucket 14% vaker nieuwe versies uit, die naadloos worden geïntegreerd van branch tot implementatie. Creëer Bitbucket-branches vanuit Jira Software of draag issues over zonder Bitbucket te verlaten.

EN Release 14% more often with Jira Software and Bitbucket, which are seamlessly integrated from branch to deployment. Create Bitbucket branches from within Jira Software or transition issues without ever leaving Bitbucket.

Ulandesa Inglese
jira jira
bitbucket bitbucket
naadloos seamlessly
geïntegreerd integrated
branch branch
creëer create
of or
issues issues
versies release
branches branches

NL Release met Jira Software en Bitbucket 14% vaker nieuwe versies, die naadloos worden geïntegreerd van branch tot implementatie. Creëer Bitbucket-branches vanuit Jira Software of draag issues over zonder Bitbucket te verlaten.

EN Release 14% more often with Jira Software and Bitbucket, which are seamlessly integrated from branch to deployment. Create Bitbucket branches from within Jira Software or transition issues without ever leaving Bitbucket.

Ulandesa Inglese
jira jira
bitbucket bitbucket
naadloos seamlessly
geïntegreerd integrated
branch branch
creëer create
of or
issues issues
branches branches

NL Breng met Jira Software en Bitbucket 14% vaker nieuwe versies uit, die naadloos worden geïntegreerd van branch tot implementatie. Creëer Bitbucket-branches vanuit Jira Software of draag issues over zonder Bitbucket te verlaten.

EN Release 14% more often with Jira Software and Bitbucket, which are seamlessly integrated from branch to deployment. Create Bitbucket branches from within Jira Software or transition issues without ever leaving Bitbucket.

Ulandesa Inglese
jira jira
bitbucket bitbucket
naadloos seamlessly
geïntegreerd integrated
branch branch
creëer create
of or
issues issues
versies release
branches branches

NL Creëer een openbare catalogus voor open toegang, of creëer privé-catalogi met een wachtwoord om informatie te delen met uw verkoopteam, uw distributeurs en uw klanten.

EN Share only the information you want to by selecting the families, categories and tags for your products.

Ulandesa Inglese
informatie information
delen share

NL Elk stuk werk, of het nu een idee, een commit of een branch is, wordt gekoppeld aan een Jira-ticket, wat resulteert in uitmuntende zichtbaarheid en inzichten.

EN Each piece of work - whether its an idea, a commit, or branchis linked to a Jira ticket, which ladders up into top-level visibility and insights.

Ulandesa Inglese
idee idea
branch branch
gekoppeld linked
zichtbaarheid visibility
inzichten insights
jira jira
ticket ticket

NL Hieronder volgt een compleet voorbeeld dat een proces voor functie-branches laat zien. Er wordt vanuit gegaan dat we een repo-opstelling hebben met een main-branch.

EN A complete example demonstrating a Feature Branch Flow is as follows. Assuming we have a repo setup with a main branch.

Ulandesa Inglese
volgt follows
voorbeeld example
functie feature
branch branch
main main

NL Creëer een product catalogus om te gebruiken met Facebook & Instagram. Creëer product advertenties, gebruik de Instagram product tagging functie, laat je producten op je Facebookpagina zien en bereid je voor op de dynamische advertenties*

EN Creates a Product Catalogue to use with Facebook & Instagram.  Create Product Ads, use Instagram product tagging feature, display your products on your Facebook page, be ready for the Dynamic Ads*

Ulandesa Inglese
creëer create
catalogus catalogue
facebook facebook
instagram instagram
functie feature
bereid ready
dynamische dynamic
je your

NL Door een speciale branch te gebruiken om releases voor te bereiden, kan één team de huidige release verfijnen, terwijl een ander team doorwerkt aan functies voor de volgende release

EN Using a dedicated branch to prepare releases makes it possible for one team to polish the current release while another team continues working on features for the next release

Ulandesa Inglese
branch branch
releases releases
team team
huidige current
release release
functies features

NL Een Git-repository aanmaken Je Git-repository kopiëren en bestanden toevoegen Wijzigingen uit je Git-repository op Bitbucket Cloud halen Een Git-branch gebruiken om een bestand samen te voegen

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

Ulandesa Inglese
aanmaken create
kopiëren copy
wijzigingen changes
bitbucket bitbucket
cloud cloud
halen pull
gebruiken use
git git
je your
branch branch

NL Als je een pull-aanvraag indient, vraag je alleen maar dat een andere ontwikkelaar (bijvoorbeeld de onderhouder van het project) een branch uit je repository naar zijn repository haalt

EN When you file a pull request, all youre doing is requesting that another developer (e.g., the project maintainer) pulls a branch from your repository into their repository

Ulandesa Inglese
ontwikkelaar developer
branch branch
repository repository

NL Creëer workflows die automatisch gesprekken toewijzen aan het juiste team, labels toevoegen en automatische replies sturen of creëer je eigen SLA’s

EN Create workflows to automatically assign conversations to the right team, add labels, send automatic replies or create your own SLA’s

Ulandesa Inglese
creëer create
workflows workflows
gesprekken conversations
toewijzen assign
juiste right
team team
labels labels
toevoegen add
s s
sla sla

NL GDPR klaar. Volg uw Facebook events met de Pixel & Conversie API. Klaar voor iOS 14.5. Zie de ROI van uw ads, creëer catalogus, dynamische ads, tag producten und creëer winkels op Facebook & Instagram, microdata...

EN GDPR Ready. Pixel Events & Conversion API. iOS 14.5 Ready. Track Facebook events with the Pixel & Conversion API. Measure the ROI of your ads, create catalogues, dynamic ads, tag products on Instagram, create shops on Facebook, microdata...

Ulandesa Inglese
gdpr gdpr
klaar ready
volg track
uw your
facebook facebook
events events
pixel pixel
conversie conversion
api api
ios ios
ads ads
creëer create
dynamische dynamic
tag tag
winkels shops
instagram instagram
roi roi

NL GDPR klaar. Volg uw Facebook events met de Pixel & Conversie API. Klaar voor iOS 14.5. Zie de ROI van uw ads, creëer catalogus, dynamische ads, tag producten und creëer winkels op Facebook & Instagram, microdata...

EN GDPR Ready. Pixel Events & Conversion API. iOS 14.5 Ready. Track Facebook events with the Pixel & Conversion API. Measure the ROI of your ads, create catalogues, dynamic ads, tag products on Instagram, create shops on Facebook, microdata...

Ulandesa Inglese
gdpr gdpr
klaar ready
volg track
uw your
facebook facebook
events events
pixel pixel
conversie conversion
api api
ios ios
ads ads
creëer create
dynamische dynamic
tag tag
winkels shops
instagram instagram
roi roi

NL Creëer meerdere channels voor gerelateerde webinars of creëer hetzelfde channel in meerdere talen.

EN Create multiple channels to have separate overviews of related webinars or create the same channel in multiple languages.

Ulandesa Inglese
creëer create
channels channels
gerelateerde related
webinars webinars
of or
channel channel

NL Als er naar een branch wordt verwezen, is dat geen probleem voor Git, maar als je een commit uitcheckt wordt er overgeschakeld naar de status 'detached HEAD'.

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.

Ulandesa Inglese
branch branch
git git
head head

NL Een pull-aanvraag samenvoegenNadat je code is beoordeeld en goedgekeurd in een pull-aanvraag, klik je op de knop 'Samenvoegen' om je branch samen te voegen in de hoofdbranch

EN Merge a pull requestAfter your code has been reviewed and approved in a pull request, click the Merge button to merge your branch into the main branch

Ulandesa Inglese
code code
beoordeeld reviewed
goedgekeurd approved
branch branch
je your
is has
aanvraag request

NL Als er naar een branch wordt verwezen, is dat geen probleem voor Git, maar als je een commit uitcheckt wordt er overgeschakeld naar de status 'detached HEAD'.

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.

Ulandesa Inglese
branch branch
git git
head head

Mustrà 50 di 50 traduzzioni