Traduzir "branch abgeschlossen" para inglês

Mostrando 50 de 50 traduções da frase "branch abgeschlossen" de alemão para inglês

Tradução de alemão para inglês de branch abgeschlossen

alemão
inglês

DE Mit dem Argument -branch kannst du statt des Branch, auf den der Remote-HEAD verweist, einen bestimmten Branch zum Klonen angeben – normalerweise ist dies der Main-Branch. Auf dieselbe Art kannst du auch einen Tag statt eines Branch angeben.

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.

alemão inglês
angeben specify
branch branch
klonen clone
remote remote
head head
normalerweise usually
ist is
einen a
tag tag
kannst can
statt instead
du you
der of
auf to
bestimmten specific
auch same

DE In der Regel gibt der Entwickler seinen Feature-Branch als Quell-Branch und den main-Branch als Ziel-Branch an.

EN Typically, the developer will specify their feature branch as the source branch and the main branch as the destination branch.

alemão inglês
entwickler developer
feature feature
branch branch
quell source
ziel destination
als as
und and
den the

DE Dieser Branch wird den kompletten Versionsverlauf des Projekts enthalten, während der main-Branch eine verkürzte Version enthält. Andere Entwickler sollten das zentrale Repository nun klonen und einen Tracking-Branch für den develop-Branch erstellen.

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.

alemão inglês
branch branch
entwickler developers
repository repository
klonen clone
tracking tracking
zentrale central
nun now
enthalten contain
projekts the project
während whereas
version version
sollten should
für for
andere other
erstellen create
und and

DE In der Regel gibt der Entwickler seinen Feature-Branch als Quell-Branch und den main-Branch als Ziel-Branch an.

EN Typically, the developer will specify their feature branch as the source branch and the main branch as the destination branch.

alemão inglês
entwickler developer
feature feature
branch branch
quell source
ziel destination
als as
und and
den the

DE Ist der release-Branch abgeschlossen, wird er in den develop-Branch und den main-Branch gemergt.

EN When the release branch is done it is merged into develop and main

alemão inglês
release release
branch branch
in into
und and

DE IF(AND(Status1 = "Abgeschlossen"; Status2 = "Abgeschlossen"; Status3 = "Abgeschlossen"); "Alle Aufgaben abgeschlossen"; "Aufgaben nicht abgeschlossen")

EN IF(AND(Status1 = "Complete", Status2 = "Complete", Status3 = "Complete"), "All Tasks Complete", "Tasks Incomplete")

alemão inglês
if if
aufgaben tasks
alle all
abgeschlossen complete

DE IF(AND(Status1 = "Abgeschlossen"; Status2 = "Abgeschlossen"; Status3 = "Abgeschlossen"); "Alle Aufgaben abgeschlossen"; "Aufgaben nicht abgeschlossen")

EN IF(AND(Status1 = "Complete", Status2 = "Complete", Status3 = "Complete"), "All Tasks Complete", "Tasks Incomplete")

DE Der standardmäßige Entwicklungs-Branch. Immer, wenn du ein Git-Repository erstellst, wird auch ein "Haupt-Branch" erstellt. Dieser wird zum aktiven Branch.

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

alemão inglês
standardmäßige default
aktiven active
branch branch
entwicklungs development
repository repository
haupt main
erstellt created
git git
erstellst create
du you
ein a
wird the

DE Generell werden Features in den develop-Branch gemergt, während Release- und Hotfix-Branches in den develop-Branch und in den main-Branch gemergt werden. Alle diese Merge-Vorgänge lassen sich mithilfe von Pull-Requests formell verwalten.

EN Features are generally merged into the develop branch, while release and hotfix branches are merged into both develop and main. Pull requests can be used to formally manage all of these merges.

alemão inglês
generell generally
features features
verwalten manage
branch branch
requests requests
release release
und and
alle all
den the
von of

DE Bevor Mary mit dem Schreiben von Code beginnt, muss Mary zunächst einen neuen Branch für das Feature erstellen. Diesen Branch wird sie als Quell-Branch des Pull-Requests verwenden.

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.

alemão inglês
mary mary
beginnt starts
neuen new
branch branch
code code
feature feature
verwenden use
quell source
requests request
erstellen create
als as
bevor to
von of
zunächst a
wird the
für for

DE Der standardmäßige Entwicklungs-Branch. Immer, wenn du ein Git-Repository erstellst, wird auch ein Branch namens "master" erstellt. Dieser wird zum aktiven Branch.

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

alemão inglês
standardmäßige default
branch branch
namens named
aktiven active
entwicklungs development
repository repository
erstellt created
git git
erstellst create
du you
ein a
wird the

DE Erstelle einen Branch mit dem Befehl "Git branch". git branch

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

alemão inglês
erstelle create
branch branch
befehl command
git git

DE Liste die Branches für dieses Repository auf. Es werden der Standard-Master-Branch und der neu erstellte Branch angezeigt. git branch

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

alemão inglês
branches branches
repository repository
erstellte created
branch branch
git git
standard default
master master
angezeigt see
neu new
und and
liste list
für for
dieses this

DE Der standardmäßige Entwicklungs-Branch. Immer, wenn du ein Git-Repository erstellst, wird auch ein Branch namens "master" erstellt. Dieser wird zum aktiven Branch.

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

alemão inglês
standardmäßige default
branch branch
namens named
aktiven active
entwicklungs development
repository repository
erstellt created
git git
erstellst create
du you
ein a
wird the

DE Erstelle einen Branch mit dem Befehl "Git branch". git branch

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

alemão inglês
erstelle create
branch branch
befehl command
git git

DE Liste die Branches für dieses Repository auf. Es werden der Standard-Master-Branch und der neu erstellte Branch angezeigt. git branch

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

alemão inglês
branches branches
repository repository
erstellte created
branch branch
git git
standard default
master master
angezeigt see
neu new
und and
liste list
für for
dieses this

DE Der main-Branch enthält den offiziellen Release-Verlauf und der develop-Branch dient als Integrations-Branch für Features

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

alemão inglês
offiziellen official
dient serves
features features
branch branch
release release
verlauf history
integrations integration
als as
für for
und and
den the

DE Ähnlich wie beim Abschluss eines release-Branch wird ein hotfix-Branch sowohl in den main- als auch in den develop-Branch gemergt.

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

alemão inglês
abschluss finishing
release release
branch branch
wird gets

DE Taucht ein Problem im main-Branch auf, wird ein hotfix-Branch auf Basis des main-Branch erstellt.

EN If an issue in main is detected a hotfix branch is created from main

alemão inglês
problem issue
branch branch
erstellt created
ein a
wird is
auf in

DE Der standardmäßige Entwicklungs-Branch. Immer, wenn du ein Git-Repository erstellst, wird auch ein "Haupt-Branch" erstellt. Dieser wird zum aktiven Branch.

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

alemão inglês
standardmäßige default
aktiven active
branch branch
entwicklungs development
repository repository
haupt main
erstellt created
git git
erstellst create
du you
ein a
wird the

DE Erstelle einen Branch mit dem Befehl "Git branch". git branch

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

alemão inglês
erstelle create
branch branch
befehl command
git git

DE Liste die Branches für dieses Repository auf. Es werden der Standard-Haupt-Branch und der neu erstellte Branch angezeigt. git branch

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

alemão inglês
branches branches
repository repository
erstellte created
branch branch
git git
standard default
haupt main
angezeigt see
neu new
und and
liste list
für for
dieses this

DE Die Grundidee hinter dem Feature-Branch-Workflow ist, dass die gesamte Feature-Entwicklung in einem dedizierten Branch und nicht im main-Branch stattfinden sollte

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

alemão inglês
branch branch
stattfinden take place
feature feature
workflow workflow
entwicklung development
in in
sollte should
die dedicated
ist is
dass that
hinter behind
dem the

DE Der standardmäßige Entwicklungs-Branch. Immer, wenn du ein Git-Repository erstellst, wird auch ein "Haupt-Branch" erstellt. Dieser wird zum aktiven Branch.

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

alemão inglês
standardmäßige default
aktiven active
branch branch
entwicklungs development
repository repository
haupt main
erstellt created
git git
erstellst create
du you
ein a
wird the

DE Generell werden Features in den develop-Branch gemergt, während Release- und Hotfix-Branches in den develop-Branch und in den main-Branch gemergt werden. Alle diese Merge-Vorgänge lassen sich mithilfe von Pull-Requests formell verwalten.

EN Features are generally merged into the develop branch, while release and hotfix branches are merged into both develop and main. Pull requests can be used to formally manage all of these merges.

alemão inglês
generell generally
features features
verwalten manage
branch branch
requests requests
release release
und and
alle all
den the
von of

DE Bevor Mary mit dem Schreiben von Code beginnt, muss Mary zunächst einen neuen Branch für das Feature erstellen. Diesen Branch wird sie als Quell-Branch des Pull-Requests verwenden.

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.

alemão inglês
mary mary
beginnt starts
neuen new
branch branch
code code
feature feature
verwenden use
quell source
requests request
erstellen create
als as
bevor to
von of
zunächst a
wird the
für for

DE Verwende für jedes Feature oder Issue, an dem du arbeitest, einen separaten Branch. Nachdem du einen Branch erstellt hast. checkst du ihn lokal aus, damit alle deine Änderungen auf diesem Branch stattfinden.

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.

alemão inglês
issue issue
separaten separate
branch branch
lokal locally
Änderungen changes
feature feature
oder or
arbeitest work
ihn it
für for
einen a
hast any
du you
damit so
auf on
diesem that

DE Dann mergst du den Feature-Branch in den main-Branch und pushst den aktualisierten main-Branch zurück zum zentralen Repository.

EN Then, you merge the feature branch into main and push the updated main back to the central repository.

alemão inglês
aktualisierten updated
repository repository
feature feature
branch branch
zentralen central
und and
du you
dann then
den the
zurück back

DE Mit diesem Befehl erstellst du einen neuen Branch mit dem Namen, den du für <branch> angibst. Der neue Branch wird jedoch nicht ausgecheckt.

EN Create a new branch called <branch>. This does not check out the new branch.

alemão inglês
branch branch
namen called
erstellst create
diesem this
nicht not
neue new

DE Branch with new file (Branch mit neuer Datei): Ändere diese Option, wenn du eine Datei zu einem anderen Branch hinzufügen möchtest

EN Branch with new file: Change if you want to add file to a different branch

alemão inglês
branch branch
möchtest you want
mit with
datei file
hinzufügen add
zu to
new new
du you
option a

DE Sobald der hotfix abgeschlossen ist, wird er in den develop-Branch und den main-Branch gemergt.

EN Once the hotfix is complete it is merged to both develop and main

alemão inglês
sobald once
abgeschlossen complete
und and

DE Sobald du deine Arbeit an einem Branch abgeschlossen und ihn in die Haupt-Codebasis gemergt hast, kannst du den Branch einfach löschen, ohne dass Verlaufsinformationen verloren gehen:

EN Once you’ve finished working on a branch and have merged it into the main code base, you’re free to delete the branch without losing any history:

alemão inglês
branch branch
abgeschlossen finished
haupt main
verloren gehen losing
sobald once
löschen delete
ohne without
arbeit working
und and
ihn it
den the
dass to

DE Ein Repository erstellen Branch klonen und Änderungen an einem neuen Branch vornehmen Wenn du die Befehlszeile verwendest Wenn du Sourcetree verwendest Eine Pull-Anfrage erstellen, um deine Änderungen zu mergen

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

alemão inglês
repository repository
branch branch
klonen clone
neuen new
befehlszeile command line
sourcetree sourcetree
mergen merge
verwendest using
zu to
anfrage request
ein a
erstellen create
deine your
und and

DE Durch die Ergänzung des Git-flow-Workflows durch Pull-Requests wird den Entwicklern ein geeigneter Ort zur Diskussion über einen Release Branch oder Maintenance Branch bereitgestellt, während sie an ihm arbeiten.

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.

alemão inglês
ergänzung adding
entwicklern developers
maintenance maintenance
git pull
workflows workflow
ort place
release release
branch branch
oder or
an requests
arbeiten working

DE Wenn der Entwickler das Feature in die Haupt-Codebasis mergen will, ist das offizielle Projekt das Ziel-Repository und der main-Branch der Ziel-Branch.

EN If the developer is trying to merge the feature into the main codebase, then the destination repository is the official project and the destination branch is main.

alemão inglês
entwickler developer
feature feature
mergen merge
offizielle official
projekt project
haupt main
codebasis codebase
ziel destination
repository repository
branch branch
ist is
und and
der the

DE Als Quell- und Ziel-Branch würde in diesem Fall derselbe Feature Branch dienen.

EN They would then use the same feature branch for the source and destination branches.

alemão inglês
derselbe the same
branch branch
ziel destination
feature feature
quell source
fall the
und and
würde would

DE Klicke im Repository in der allgemeinen Seitenleiste auf + und wähle unter "Get to work" (An die Arbeit) "Create a branch" (Branch erstellen).

EN From the repository, click + in the global sidebar and under Get to work, select Create a branch.

alemão inglês
repository repository
seitenleiste sidebar
branch branch
im in the
get get
to to
a a
in in
klicke click
wähle select
arbeit work
der the
erstellen create
und and

DE Nimm deine Änderungen lokal vor und füge sie dem Branch hinzu, committe und pushe sie: git add. git commit -m "adding a change from the feature 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

alemão inglês
lokal locally
branch branch
feature feature
origin origin
Änderungen changes
git git
commit commit
a a
change change
push push
und and
dem the
vor to

DE Branch schließen: Wähle diese Option, wenn du den Branch automatisch schließen möchtest, sobald die Pull-Anfrage gemergt ist.

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

alemão inglês
branch branch
automatisch automatically
möchtest you want
schließen the
wähle select
anfrage request
ist is
du you

DE Merge eine Pull-Anfrage Nachdem dein Code in einer Pull-Anfrage überprüft und genehmigt wurde, klicke auf die "Merge"-Schaltfläche, um deinen Branch in den Haupt-Branch zu mergen

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

alemão inglês
code code
überprüft reviewed
genehmigt approved
branch branch
haupt main
merge merge
in in
schaltfläche button
klicke click
zu to
und and
anfrage request
den the

DE Die Codeänderungen am Quell-Branch wurden nun vollständig in den Ziel-Branch übernommen.

EN The code changes from the source branch are now fully incorporated into the target branch.

alemão inglês
vollständig fully
änderungen changes
branch branch
in into
code code
nun now
den the

DE Klicke im Repository in der allgemeinen Seitenleiste auf + und wähle unter "Get to work" (An die Arbeit) "Create a branch" (Branch erstellen).

EN From the repository, click + in the global sidebar and under Get to work, select Create a branch.

alemão inglês
repository repository
seitenleiste sidebar
branch branch
im in the
get get
to to
a a
in in
klicke click
wähle select
arbeit work
der the
erstellen create
und and

DE Nimm deine Änderungen lokal vor und füge sie dem Branch hinzu, committe und pushe sie: git add. git commit -m "adding a change from the feature 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

alemão inglês
lokal locally
branch branch
feature feature
origin origin
Änderungen changes
git git
commit commit
a a
change change
push push
und and
dem the
vor to

DE Branch schließen: Wähle diese Option, wenn du den Branch automatisch schließen möchtest, sobald die Pull-Anfrage gemergt ist.

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

alemão inglês
branch branch
automatisch automatically
möchtest you want
schließen the
wähle select
anfrage request
ist is
du you

DE Merge eine Pull-Anfrage Nachdem dein Code in einer Pull-Anfrage überprüft und genehmigt wurde, klicke auf die "Merge"-Schaltfläche, um deinen Branch in den Haupt-Branch zu mergen

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

alemão inglês
code code
überprüft reviewed
genehmigt approved
branch branch
haupt main
merge merge
in in
schaltfläche button
klicke click
zu to
und and
anfrage request
den the

DE Die Codeänderungen am Quell-Branch wurden nun vollständig in den Ziel-Branch übernommen.

EN The code changes from the source branch are now fully incorporated into the target branch.

alemão inglês
vollständig fully
änderungen changes
branch branch
in into
code code
nun now
den the

DE Ein Repository erstellen Branch klonen und Änderungen an einem neuen Branch vornehmen Wenn du die Befehlszeile verwendest Wenn du Sourcetree verwendest Eine Pull-Anfrage erstellen, um deine Änderungen zu mergen

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

alemão inglês
repository repository
branch branch
klonen clone
neuen new
befehlszeile command line
sourcetree sourcetree
mergen merge
verwendest using
zu to
anfrage request
ein a
erstellen create
deine your
und and

DE Unter diesem Modell erstellen Entwickler einen Feature-Branch und verzögern den Merge mit dem Haupt-Trunk-Branch, bis das Feature vollständig ist

EN Under this model, developers create a feature branch and delay merging it to the main trunk branch until the feature is complete

alemão inglês
modell model
entwickler developers
merge merging
feature feature
branch branch
haupt main
diesem this
ist is
erstellen create
den the
und and
vollständig to

DE Der erste Schritt ist, den obligatorischen main- mit einem develop-Branch zu ergänzen. Entwickler können das ganz einfach tun, indem sie einen leeren develop-Branch lokal erstellen und ihn zum Server pushen:

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:

alemão inglês
ergänzen complement
entwickler developer
lokal locally
pushen push
branch branch
schritt step
server server
mit with
zu to
ihn it
ist is
erste the first
den the
tun do
leeren empty
erstellen create
und and

DE Beachte, dass die Kombination von Feature Branches mit dem develop-Branch eigentlich dem Feature Branch Workflow entspricht. Doch der Git-flow-Workflow geht darüber hinaus.

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.

alemão inglês
beachte note
feature feature
branches branches
branch branch
workflow workflow
dass that
mit combined

Mostrando 50 de 50 traduções