Einführung in Git
George Boorman
Curriculum Manager, DataCamp
.git
nicht bearbeiten!
git init mental-health-workspace
cd mental-health-workspace
git status
On branch main
No commits yet
nothing to commit (create/copy files and use "git add" to track)
git init
Initialized empty Git repository in /home/repl/mental-health-workspace/.git/
git status
On branch main
No commits yet
Untracked files:
(use "git add <file>..." to include what will be committed)
data/
report.md
nothing added to commit but untracked files present (use "git add" to track)
Daraus ergeben sich zwei .git
-Verzeichnisse.
Welches .git
-Verzeichnis muss aktualisiert werden?
Einführung in Git