-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
3 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,14 @@ | ||
# org.javacream.training.gitscm | ||
# org.javacream.training.gitscm | ||
|
||
|
||
## Organisatorisches | ||
|
||
* Referent: Rainer Sawitzki, eMail: [email protected] | ||
|
||
* Seminarzeiten | ||
* 8 Unterrichtseinheiten mit jeweils 90 Minuten | ||
* 9:00 - 16:15 | ||
* Mittagspause 45’ (12:15-13:00) | ||
* Kaffeepausen 10:30 - 10:45 und 14:30 - 14:45 | ||
|
||
* [Digitales Flipchart](https://docs.google.com/presentation/d/1a6xSdhXjwSKaamHPgaE1UMEUMX5jNXof3qTo8Iev7i0/edit?usp=sharing) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
rm -rf training_branches | ||
mkdir training_branches | ||
cd training_branches | ||
git init --initial-branch=main | ||
echo Branches > README.txt | ||
git add . | ||
git commit -m "setup project" | ||
git tag v1.0 | ||
git branch feature/star | ||
git branch feature/planet | ||
git checkout feature/star | ||
echo Vega > star.txt | ||
git add . | ||
git commit -m "add vega" | ||
echo Sol > star.txt | ||
git add . | ||
git commit -m "change to Sol" | ||
git checkout feature/planet | ||
echo Venus > planet.txt | ||
git add . | ||
git commit -m "add venus" | ||
git branch feature/planet_part1 | ||
git branch feature/planet_part2 | ||
git checkout feature/planet_part1 | ||
echo Mercury > planet.txt | ||
git add . | ||
git commit -m "add Mercury" | ||
git checkout feature/planet_part2 | ||
echo Uranus > planet.txt | ||
git add . | ||
git commit -m "add Uranus" | ||
echo Jupiter > planet.txt | ||
git add . | ||
git commit -m "add Jupiter" | ||
git checkout main |