Skip to main content
  1. Learn
  2. Software Development
  3. Guides
  4. Git tutorial
  5. Verwenden von Git
  6. Verwenden von Branching in Git
  7. Paralleles Arbeiten
GuidesSoftware DevelopmentBacklog
Git

Project and code management together.

Paralleles Arbeiten

Branching ermöglicht es uns, in mehreren parallelen Arbeitsbereichen zu arbeiten.

Um dies zu demonstrieren, erstellen wir zwei Branches, einen mit dem Namen issue2 und einen anderen mit dem Namen issue3. Wechseln Sie dann zu issue2.

$ git branch issue2
$ git branch issue3
$ git checkout issue2
Switched to branch 'issue2'
$ git branch
* issue2
  issue3
  main

Zu diesem Zeitpunkt sieht unser Verlauf folgendermaßen aus:

Current history

Fügen Sie im nächsten Schritt den fettgedruckten Text unten in die Datei myfile.txt ein.

Anyone can learn Git with this tutorial and Backlog add: Register a change in an index commit: Save the status of an index

Führen Sie dann einen Commit für die Änderung durch.

$ git add myfile.txt
$ git commit -m "append description of the commit command"
[issue2 8f7aa27] append description of the commit command
  1 files changed, 2 insertions(+), 0 deletions(-)

Dies ist nun unser Verlauf:

Current history

Wechseln Sie dann zum Branch issue3.

$ git checkout issue3
Switched to branch 'issue3'

Der Branch issue3 hat derzeit denselben Verlauf und Inhalt wie der Haupt-Branch. Die Änderung, die wir gerade vorgenommen haben, ist nicht enthalten, da sie in den Branch issue2 übertragen wurde.

Fügen Sie den fettgedruckten Text unten in die Datei myfile.txt ein.

Anyone can learn Git with this tutorial and Backlog add: Register a change in an index pull: Obtain the content of the remote repository

Übertragen Sie die Änderung mit dem add-Befehl.

$ git add myfile.txt
$ git commit -m "append description of the pull command"
  [issue3 e5f91ac] append description of the pull command
    1 files changed, 2 insertions(+), 0 deletions(-)

Dies ist nun unser Verlauf:

Current history

Wir haben zwei verschiedene Textzeilen parallel zu zwei verschiedenen Branches hinzugefügt.

Subscribe to our newsletter

Learn with Nulab to bring your best ideas to life