Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,13 @@ Macht die Aufgabe gemeinsam, Schritt für Schritt.
1. Vergleicht erneut die commits von seinem eigenen Branch und dem main branch
1. Merge deinen branch in den main branch.
1. Pushe den main branch zu github.


## Tipps zum Umgang mit Merge-Konflikten

- Nutze die grafische Oberfläche von IntelliJ zum Lösen von Konflikten.
- Lies die Änderungen sorgfältig durch, bevor du sie übernimmst.

## Teilnehmer

- Person A: Darian
- Person B: Emrullah
2 changes: 1 addition & 1 deletion git-branch-rebasing-task.iml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
<orderEntry type="jdk" jdkName="19" jdkType="JavaSDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
</module>
5 changes: 5 additions & 0 deletions src/FeatureA.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
public class FeatureA {
public static void main(String[] args) {
System.out.println("Hallo, das ist der Code von Florian");
}
}
6 changes: 6 additions & 0 deletions src/FeatureB.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
public class FeatureB {

public static void main(String[] args) {
System.out.println("Das ist Feature B von: Emrullah");
}
}