Translate "branch opdracht in git" to English

Showing 50 of 50 translations of the phrase "branch opdracht in git" from Dutch to English

Translations of branch opdracht in git

"branch opdracht in git" in Dutch can be translated into the following English words/phrases:

branch branch
opdracht a assignment business by changes command commission create data design directory domain domain name files following information job make more move of the order page process project run running service site use web website work working
git git

Translation of Dutch to English of branch opdracht in git

Dutch
English

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.

Dutch English
branch branch
klonen clone
externe remote
daarnaast in addition
effect effect
tag tag
in plaats van instead

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

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

Dutch English
branch branch
aanmaken create
git git
opdracht command

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

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

Dutch English
branch branch
aanmaken create
git git
opdracht command

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

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

Dutch English
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. You’ll see the default branch master, and the new branch you created. git branch

Dutch English
branches branches
repository repository
standaard default
branch branch
git git

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. You’ll see the default branch master, and the new branch you created. git branch

Dutch English
branches branches
repository repository
standaard default
branch branch
git git

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:

Dutch English
stap step
aanvullen complement
standaard default
manier way
ontwikkelaar developer
lokaal locally
server server
main main
branch branch

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. You’ll see the default branch main, and the new branch you created. git branch

Dutch English
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.

Dutch English
begint starts
mary mary
branch branch
functie feature
aanvraag request

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

Dutch English
main main
branch branch
library library
inzet dedication
river river
center center
rouge rouge

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.

Dutch English
standaard default
branch branch
naam named
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

Dutch English
lokaal locally
branch branch
git git
origin origin
je your
functie feature

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.

Dutch English
branch branch
selecteer select
je you
automatisch automatically
wil want
samengevoegd merged
aanvraag request

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.

Dutch English
standaard default
branch branch
naam named
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

Dutch English
lokaal locally
branch branch
git git
origin origin
je your
functie feature

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.

Dutch English
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

Dutch English
branch branch
dient serves
voor for
functies features
main main

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.

Dutch English
branch branch
geschiedenis history
main main
ontwikkelaars developers
centrale central
repository repository
klonen clone
aanmaken create
tracking tracking

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.

Dutch English
echter but
functie feature
branches branches
branch branch
workflow workflow

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.

Dutch English
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.

Dutch English
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.

Dutch English
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

Dutch English
lokaal locally
branch branch
git git
origin origin
je your
functie feature

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.

Dutch English
branch branch
selecteer select
je you
automatisch automatically
wil want
samengevoegd merged
aanvraag request

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.

Dutch English
standaard default
branch branch
naam named
main main
aangemaakt created
actieve active
git git
repository repository

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.

Dutch English
je you
aanvraag request
bron source
repository repository
branch branch

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 they’re working on it.

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

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.

Dutch English
formulier form
mary mary
s s
repository repository
automatisch automatically
vraagt asks
bron source
branch branch

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 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 Haal de branch na het aanmaken op en check deze uit van je lokale systeem. Bitbucket zal automatisch de opdracht tonen die nodig is. Dat zal er ongeveer zo uitzien: 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

Dutch English
branch branch
aanmaken created
lokale local
systeem system
bitbucket bitbucket
automatisch automatically
opdracht command
tonen show
nodig needed
git git
checkout checkout

NL Haal de branch na het aanmaken op en check deze uit van je lokale systeem. Bitbucket zal automatisch de opdracht tonen die nodig is. Dat zal er ongeveer zo uitzien: 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

Dutch English
branch branch
aanmaken created
lokale local
systeem system
bitbucket bitbucket
automatisch automatically
opdracht command
tonen show
nodig needed
git git
checkout checkout

NL Haal de branch na het aanmaken op en check deze uit van je lokale systeem. Bitbucket zal automatisch de opdracht tonen die nodig is. Dat zal er ongeveer zo uitzien: 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

Dutch English
branch branch
aanmaken created
lokale local
systeem system
bitbucket bitbucket
automatisch automatically
opdracht command
tonen show
nodig needed
git git
checkout checkout

NL Er is een optie om de dagelijkse cron-taak op deze pagina in te stellen, gevolgd door een PHP-opdracht om te gebruiken.Om dit te doen, kopieert u de opdracht onder stap drie (3) die begint met PHP -Q

EN There will be an option to set up the daily cron job on this page, followed by a PHP command to use. To do so, Copy the command under step three (3) that begins with PHP -q

Dutch English
optie option
dagelijkse daily
pagina page
gevolgd followed
stap step
begint begins
php php

NL Een vaste opdracht, een studentenjob of een opdracht op projectbasis. In de farmaceutische of grafische sector, de bouw, de autonijverheid of de petrochemie, bijvoorbeeld.

EN A fixed assignment, a student job or an assignment on a project basis. In the pharmaceutical or printing industry, construction, the automotive industry or the petrochemical industry, for example.

Dutch English
vaste fixed
of or
op on
farmaceutische pharmaceutical
sector industry
bouw construction

NL Voordat u verder gaat, wilt u NGINX inschakelen om op Boot-up te starten.Op die manier hoeft u de bovenstaande opdracht niet telkens weer te geven telkens wanneer de server start.U kunt dit doen door de volgende opdracht in te voeren:

EN Before moving on, you'll want to enable Nginx to start on bootup. That way, you do not have to retype the above command each time the server starts. You can do so by entering the following command:

Dutch English
manier way
opdracht command
niet not
server server
nginx nginx

NL Om de PHP-service in staat te stellen automatisch te starten, dus u hoeft niet de bovenstaande opdracht te typen telkens wanneer de server opnieuw wordt opgestart, deze opdracht hier gebruikt:

EN For enabling the PHP service to start automatically, so you don't have to type the command above every time the server restarts, use this command here:

Dutch English
automatisch automatically
u you
niet don
opdracht command
server server
gebruikt use
php php
service service

NL \ $?- de exitcode van de vorige opdracht.Dit wordt bijgewerkt nadat elke opdracht wordt uitgevoerd.

EN \$? - The previous command's exit code. This will update after each command is run.

Dutch English
vorige previous
opdracht command
bijgewerkt update

NL Start een van de FreeOffice-toepassingen, klik op het pictogram “?” in het lint en kies de opdracht Controleer op updates. In de klassieke modus van FreeOffice met menu's ga je naar de opdracht Help > Controleer op updates.

EN Start one of the FreeOffice applications, click on the "?" icon in the ribbon and choose the command Check for updates. If you are running FreeOffice in classic mode with menus, choose the command Help > Check for updates.

Dutch English
start start
klik click
pictogram icon
lint ribbon
kies choose
opdracht command
controleer check
updates updates
klassieke classic
modus mode
menu menus
help help
toepassingen applications
gt gt

NL Voeg deze daarna toe aan FreeOffice door te kiezen voor de lint-opdracht Bestand | Opties, of de opdracht Hulpmiddelen > Opties dan het tabblad Taal te selecteren en te klikken op de knop voor Hunspell-woordenlijsten.

EN Then add it to FreeOffice by choosing the ribbon command File | Options or the menu command Tools > Options, switching to the Language tab and clicking on the Hunspell dictionaries button.

Dutch English
voeg add
bestand file
opdracht command
hulpmiddelen tools
tabblad tab
lint ribbon
gt gt

NL Devel­o­pers­hand­leiding WEBFLEET.connect - opdracht­ver­zendingStuur opdrachten naar WEBFLEET en ontvang opdracht­sta­tu­sup­dates op afstand.

EN WEBFLEET.connect developer guide – Job dispatchSend jobs to WEBFLEET and receive job status updates remotely.

Dutch English
webfleet webfleet
connect connect
opdracht job
opdrachten jobs
naar to
en and
ontvang receive
op afstand remotely

NL Start een van de FreeOffice-toepassingen, klik op het pictogram “?” in het lint en kies de opdracht Controleer op updates. In de klassieke modus van FreeOffice met menu's ga je naar de opdracht Help > Controleer op updates.

EN Start one of the FreeOffice applications, click on the "?" icon in the ribbon and choose the command Check for updates. If you are running FreeOffice in classic mode with menus, choose the command Help > Check for updates.

Dutch English
start start
klik click
pictogram icon
lint ribbon
kies choose
opdracht command
controleer check
updates updates
klassieke classic
modus mode
menu menus
help help
toepassingen applications
gt gt

NL Voeg deze daarna toe aan FreeOffice door te kiezen voor de lint-opdracht Bestand | Opties, of de opdracht Hulpmiddelen > Opties dan het tabblad Taal te selecteren en te klikken op de knop voor Hunspell-woordenlijsten.

EN Then add it to FreeOffice by choosing the ribbon command File | Options or the menu command Tools > Options, switching to the Language tab and clicking on the Hunspell dictionaries button.

Dutch English
voeg add
bestand file
opdracht command
hulpmiddelen tools
tabblad tab
lint ribbon
gt gt

NL SSH-sessie startenStart snel een SSH-sessie met je VM. Voor deze opdracht is een SSH-server vereist die wordt uitgevoerd op je VM en die de opdracht 'ssh <vm_ip>' oproept in Terminal.

EN Start SSH SessionQuickly start an SSH session with your VM. This command requires an SSH server running on your VM; calls 'ssh <vm_ip>' command in Terminal.

Dutch English
opdracht command
vereist requires
ssh ssh
lt lt
terminal terminal
sessie session
je your
vm vm
server server
gt gt

NL Er is een optie om de dagelijkse cron-taak op deze pagina in te stellen, gevolgd door een PHP-opdracht om te gebruiken.Om dit te doen, kopieert u de opdracht onder stap drie (3) die begint met PHP -Q

EN There will be an option to set up the daily cron job on this page, followed by a PHP command to use. To do so, Copy the command under step three (3) that begins with PHP -q

Dutch English
optie option
dagelijkse daily
pagina page
gevolgd followed
stap step
begint begins
php php

NL 2. Bevestig dat de opdracht HwAgent beschikbaar is (de sudo -opdracht is niet nodig als u de rootgebruiker bent).

EN 2. Confirm that the hwagent command is available (the sudo command is not necessary if you're the root user).

Dutch English
bevestig confirm
opdracht command
niet not
nodig necessary
als if
u you

NL Voordat u verder gaat, wilt u NGINX inschakelen om op Boot-up te starten.Op die manier hoeft u de bovenstaande opdracht niet telkens weer te geven telkens wanneer de server start.U kunt dit doen door de volgende opdracht in te voeren:

EN Before moving on, you'll want to enable Nginx to start on bootup. That way, you do not have to retype the above command each time the server starts. You can do so by entering the following command:

Dutch English
manier way
opdracht command
niet not
server server
nginx nginx

NL Om de PHP-service in staat te stellen automatisch te starten, dus u hoeft niet de bovenstaande opdracht te typen telkens wanneer de server opnieuw wordt opgestart, deze opdracht hier gebruikt:

EN For enabling the PHP service to start automatically, so you don't have to type the command above every time the server restarts, use this command here:

Dutch English
automatisch automatically
u you
niet don
opdracht command
server server
gebruikt use
php php
service service

NL \ $?- de exitcode van de vorige opdracht.Dit wordt bijgewerkt nadat elke opdracht wordt uitgevoerd.

EN \$? - The previous command's exit code. This will update after each command is run.

Dutch English
vorige previous
opdracht command
bijgewerkt update

NL Wij laten niets aan het toeval over: elke opdracht wordt uitsluitend beheerd door onze ervaren senior consultants, die hun uitgebreide vakkennis en robuust netwerk voor uw opdracht inschakelen.

EN We don’t leave anything to chance: every assignment is monitored exclusively by our experienced senior consultants, who apply their in-depth specialist knowledge and robust network access to your assignment.

Showing 50 of 50 translations