What is the translation of " GIT MERGE " in German?

Examples of using Git merge in English and their translations into German

{-}
  • Colloquial category close
  • Official category close
  • Ecclesiastic category close
  • Medicine category close
  • Financial category close
  • Ecclesiastic category close
  • Political category close
  • Computer category close
  • Programming category close
  • Official/political category close
  • Political category close
Git Merge Conflict Tutor… 1 year ago, 364 views, 0 comments.
Git Merge Conflict Tutor… Vor 1 Jahr, 364 Aufrufe, 0 Kommentare.
This option is the same as entering git merge--no-ff in the command line.
Alternativ kannst du"git merge--no-ff" in die Befehlszeile eingeben.
Git merge will combine multiple sequences of commits into one unified history.
Mit git merge werden mehrere Commit-Abfolgen in einen einheitlichen Verlauf zusammengeführt.
First, it eliminates the unnecessary merge commits required by git merge.
Erstens werden dabei unnötige Merge-Commits eliminiert, die für git merge erforderlich sind.
There is no git merge alternative for cleaning up local commits with an interactive rebase.
Es gibt keine Alternative für git merge, um lokale Commits mit einem interaktiven Rebasing zu bereinigen.
The first thing to understand about gitrebase is that it solves the same problem as git merge.
Du solltest wissen,dass der Befehl git rebase dasselbe Problem löst wie git merge.
To learn more about git merge and merge options, see git-merge or your Git documentation.
Weitere Informationen zum Befehl git merge und den Zusammenführungsoptionen finden Sie unter git-merge oder in Ihrer Git-Dokumentation.
Any changes from other developers need to be incorporated with git merge instead of git rebase.
Änderungen von anderen Entwicklern müssen mit git merge integriert werden, nicht mit git rebase.
The git merge command also allows you to choose the merge option or strategy you use for the merge..
Mit dem Befehl git merge können Sie zudem die Option oder Strategie für die Zusammenführung auswählen.
Instead, you can manually merge the branches using the git merge command with a different merge option.
Stattdessen können Sie die Branches mit dem Befehl git merge und einer anderen Zusammenführungsoption manuell zusammenführen.
In these scenarios, git merge takes two commit pointers, usually the branch tips, and will find a common base commit between them.
In diesen Fällen sucht git merge zwischen zwei Commit-Pointern, was für gewöhnlich die Branch-Spitzen sind, einen gemeinsamen Basis-Commit.
In this article, we will discuss how and when a basic git merge operation can be replaced with a rebase.
In diesem Artikel erklären wir, wie und wann du statt einem einfachen git merge -Vorgang auch ein Rebasing durchführen kannst.
Now, if you want to merge your opera branch into trunk(your master branch),you can do so with a normal git merge.
Wenn Du jetzt Deinen opera-Zweig in trunk(Deinen master-Zweig) zusammenführen willst,kannst Du das mit einem normalen git merge machen.
Pulling in upstream changes with Git merge results in a superfluous merge commit every time you want to see how the project has progressed.
Das Pullen von Upstream-Änderungen mit"git merge" führt jedes Mal, wenn du den Projektfortschritt ansiehst, zu einem überflüssigen Merge-Commit.
You see an advisory message to resolve conflicts,which you must do on your local computer with the git merge command or a diff or merge tool.
Diesen Vorgang müssen Sie auf Ihrem lokalen Computer mit dem Befehl git merge oder über ein Diff- oder Merge-Tool lösen.
Its git merge and git rebase commands offer alternative ways to integrate commits from different branches, and both options come with their own advantages.
Die Befehle git merge und git rebase bieten unterschiedliche Möglichkeiten, Commits von verschiedenen Branches zusammenzuführen.
We briefly mentioned that git reflog can be used with other git commands like git checkout,git reset, and git merge.
Wir haben kurz erwähnt, dass git reflog mit anderen Befehlen wie git checkout,git reset und git merge kombiniert werden kann.
The git merge command lets you take the independent lines of development created by git branch and integrate them into a single branch.
Mit dem Befehl git merge kannst du die unabhängigen Entwicklungszweige,die mit git branch erstellt wurden, in einen einzigen Branch integrieren.
On the other hand, if you want to preserve the complete history of your project and avoid the risk of re-writing public commits,you can stick with git merge.
Wenn du andererseits den kompletten Projektverlauf erhalten und das Risiko vermeiden willst, öffentliche Commits neu zu schreiben,kannst du bei git merge bleiben.
You can always manually merge branches, including pull request branches,by using the git merge command in your local repo and pushing your changes.
Sie können Branches jederzeit manuell zusammenführen, einschließlich von Pull-Anfrage-Branches,indem Sie den Befehl git merge in Ihrem lokalen Repository ausführen und Ihre Änderungen senden.
Git branch opera remotes/opera Now, if you want to merge your opera branch into trunk(your master branch),you can do so with a normal git merge.
Git branch opera remotes/opera aus. Wenn Du jetzt Deinen opera -Zweig in trunk(Deinen master -Zweig) zusammenführen willst,kannst Du das mit einem normalen git merge machen.
This means that git merge is often used in conjunction with git checkout for selecting the current branch and git branch-d for deleting the obsolete target branch.
Der Befehl git merge wird also oft im Zusammenhang mit git checkout zum Auswählen des aktuellen Branches und git branch -d zum Löschen des veralteten Ziel-Branches genutzt.
This is a similar situation to incorporating upstream changes into a feature branch, but since you're not allowed to re-write commits in the master branch,you have to eventually use git merge to integrate the feature.
Da du aber im master- Branch keine Commits neu schreiben darfst,musst du git merge nutzen, um das Feature zu integrieren.
In this article, we will compare git rebase with the related git merge command and identify all of the potential opportunities to incorporate rebasing into the typical Git workflow.
In diesem Artikel werden wir git rebase mit dem verwandten git merge- Befehl vergleichen und alle potenziellen Chancen identifizieren, um Rebasing in den typischen Git-Workflow einzubinden.
In the Conceptual Overview section, we saw how a feature branch canincorporate upstream changes from master using either git merge or git rebase.
Im Abschnitt Übersicht zum Konzept haben wir gesehen, wie ein Feature Branch Upstream-Änderungenvom master- Branch über die Befehle git merge oder git rebase integrieren kann.
You might want to do this if you want to use the git merge command to merge the branches manually, or if the code in the pull request source branch isn't code you want merged into the destination branch.
Dies ist sinnvoll, wenn Sie Branches manuell mithilfe des Befehls git merge zusammenführen möchten oder wenn der Code im Quell-Branch der Pull-Anforderung nicht der Code ist,der mit dem Ziel-Branch zusammengeführt werden soll.
If you would prefer a clean, linear history free of unnecessary merge commits,you should reach for git rebase instead of git merge when integrating changes from another branch.
Wenn dir ein sauberer, linearer Verlauf ohne unnötige Merge-Commits lieber ist,solltest du git rebase anstelle von git merge nutzen, um Änderungen aus einem anderen Branch zu integrieren.
Remember that although you're using git merge to do this operation, and the merge likely will be much easier than it would be in Subversion(because Git will automatically detect the appropriate merge base for you), this isn't a normal Git merge commit.
Behalte im Hinterkopf, dass dieses Vorgehen kein normaler Git-Merge-Commit ist, auch wenn Du den git merge -Befehl verwendes und das Zusammenführen wahrscheinlich wesentlich einfacher ist als es in Subversion gewesen wäre weil Git automatisch die passende Basis für das Zusammenführen der Zweige für Dich herausfindet.
After a feature has been approved by your team, you have the option of rebasing thefeature onto the tip of the master branch before using git merge to integrate the feature into the main code base.
Nachdem ein Feature von deinem Team freigegeben wurde, hast du die Option, das Feature andie Spitze des master- Branch zu rebasen, bevor du git merge nutzt, um das Feature in die Haupt-Codebasis zu integrieren.
Git merging combines sequences of commits into one unified history of commits.
Durch das Mergen in Git werden mehrere Commit-Abfolgen in einen einheitlichen Commit-Verlauf zusammengeführt.
Results: 114, Time: 0.034

Word-for-word translation

Top dictionary queries

English - German