Translate "git branch" to English

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

Translations of git branch

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

git git
branch branch

Translation of Dutch to English of git branch

Dutch
English

NL Git voor ontwikkelaars Git voor marketing Git voor productbeheer Git voor ontwerpers Git voor klantenondersteuning Git voor Human Resources Git voor iedereen die een budget beheert

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

Dutch English
git git
marketing marketing
human human
budget budget

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

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

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 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 Git heeft een eigen URL-syntaxis die wordt gebruikt om externe repository-locaties door te geven aan Git-opdrachten. Omdat git clone het meest wordt gebruikt op externe repositories, zullen we hier de Git URL-syntaxis bestuderen.

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.  

Dutch English
git git
externe remote
clone clone
hier here
url url
syntaxis syntax
locaties locations

NL Een protocol dat uniek is voor git. Git wordt geleverd met een daemon die draait op poort (9418). Het protocol is vergelijkbaar met SSH, maar het heeft GEEN AUTHENTICATIE. git://host.xz[:poort]/pad/naar/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/  

Dutch English
protocol protocol
git git
draait runs
poort port
vergelijkbaar similar
ssh ssh
authenticatie authentication
host host

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 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 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 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 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 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 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 Wanneer je de 'git-flow'-extensiebibliotheek gebruikt, zal het uitvoeren van git flow init op een bestaande repo de develop-branch aanmaken:

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

Dutch English
git git
flow flow
bestaande existing
branch branch

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 Kloont de repo op < repo-locatie> en past de sjabloon uit <sjabloonmap> toe op de nieuw gemaakte lokale branch. Een grondige verwijzing naar Git-sjablonen is te vinden op onze git init-pagina.

EN Clones the repo at <repo location> and applies the template from <template directory> to the newly created local branch. A thorough refrence on Git templates can be found on our git init page.  

Dutch English
nieuw newly
gemaakte created
lokale local
branch branch
vinden found
git git
locatie location
pagina page

NL Is Git nieuw voor jou? Maak je geen zorgen, wij helpen je. Lees onze tutorials 'Git goed begrijpen' om kennis te maken met Git.

EN New to Git? No worries, we got you covered. Read our Getting Git Right tutorials for a primer on Git.

Dutch English
git git
nieuw new
geen no
tutorials tutorials
zorgen worries

NL Is Git nieuw voor jou? Maak je geen zorgen, wij helpen je. Lees onze tutorials 'Git goed begrijpen' om kennis te maken met Git.

EN New to Git? No worries, we got you covered. Read our Getting Git Right tutorials for a primer on Git.

Dutch English
git git
nieuw new
geen no
tutorials tutorials
zorgen worries

NL Er zijn verschillende manieren om Git op een Mac te installeren. Sterker nog, als je XCode hebt geïnstalleerd (of de Command Line Tools), is Git misschien al geïnstalleerd. Open een terminal en voer git --version in om daar achter te komen.

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.

Dutch English
manieren ways
git git
mac mac
command command
line line
tools tools
terminal terminal

NL Apple onderhoudt en levert in feite een eigen vertakking van Git; deze loopt eigenlijk meerdere grote versies achter op de gangbare Git. Misschien wil je een nieuwere versie van Git installeren op een van de volgende manieren:

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:

Dutch English
apple apple
git git
grote major
nieuwere newer
manieren methods

NL Om te leren hoe je Git kunt gebruiken met Sourcetree (en hoe je je Git-repository's op Bitbucket kunt hosten), kun je onze uitgebreide Git-tutorial met Bitbucket en Sourcetree volgen.

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.

Dutch English
git git
sourcetree sourcetree
bitbucket bitbucket
hosten host
uitgebreide comprehensive
volgen follow
repository repositories
tutorial tutorial

NL De Git-bron klonen (of download Git en pak die dan uit als je nog geen versie van Git hebt geïnstalleerd):

EN Clone the Git source (or if you don't yet have a version of Git installed, download and extract it):

Dutch English
klonen clone
download download
git git
versie version
geïnstalleerd installed
bron source

NL Raadpleeg voor meer informatie over git clone-functionaliteit de officiële Git-documentatie. We behandelen ook praktische voorbeelden van git clone in onze handleiding voor het instellen van een repository.

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.

Dutch English
raadpleeg consult
git git
praktische practical
clone clone
handleiding guide
repository repository
functionaliteit functionality

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 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 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 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 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 Intern werkt de git-checkoutopdracht simpelweg de HEAD bij, zodat deze naar de opgegeven branch of commit verwijst

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

Dutch English
intern internally
simpelweg simply
head head
opgegeven specified
branch branch
git git

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.

Dutch English
branch branch
git git
head head

NL Intern werkt de git-checkoutopdracht simpelweg de HEAD bij, zodat deze naar de opgegeven branch of commit verwijst

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

Dutch English
intern internally
simpelweg simply
head head
opgegeven specified
branch branch
git git

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.

Dutch English
branch branch
git git
head head

Showing 50 of 50 translations