|
|
@@ -9,7 +9,7 @@
|
|
|
\item
|
|
|
\de{Die aktuellsten Änderungen vom Server holen.
|
|
|
}\en{Load the newest changes from server.}
|
|
|
- \hfill \var{pull}
|
|
|
+ \hfill \var{fetch / pull}
|
|
|
\item
|
|
|
\de{Falls notwendig: Den aktuellen Arbeitszweig wechseln oder einen neuen anlegen.
|
|
|
}\en{If needed: change or crate a branch.}
|
|
|
@@ -82,11 +82,17 @@
|
|
|
\index{GIT!pull}
|
|
|
|
|
|
\begin{itemize}
|
|
|
+\item
|
|
|
+ \codeline{git fetch}
|
|
|
+
|
|
|
+ \de{Lädt den aktuellsten Stand des Repositorys vom Server l\"asst das Arbeitsverzeichnis aber unver\"andert.
|
|
|
+ }\en{Loads the newest version of the repository from server but leaves the working directory as it is.}
|
|
|
+
|
|
|
\item
|
|
|
\codeline{git pull}
|
|
|
|
|
|
- \de{Lädt den aktuellsten Stand des Repositorys vom Server.
|
|
|
- }\en{Loads the newest version of the repository from server.}
|
|
|
+ \de{Lädt den aktuellsten Stand des Repositorys vom Server und aktualisiert das Arbeitsverzeichnis.
|
|
|
+ }\en{Loads the newest version of the repository from server and updates the working directory.}
|
|
|
|
|
|
\item
|
|
|
\codeline{git checkout \placeholder{NAME}}
|
|
|
@@ -189,6 +195,11 @@
|
|
|
\de{Fügt die neue oder geänderte Datei \placeholder{FILE\_NAME} dem nächsten Commit hinzu.
|
|
|
}\en{Adds the new or changed file \placeholder{FILE\_NAME} to the next commit.}
|
|
|
|
|
|
+\item
|
|
|
+ \codeline{git add .}
|
|
|
+ \de{Fügt alle neuen oder ge\"anderten Dateien im aktuellen Ornder und allen unterordnern dem nächsten Commit hinzu.
|
|
|
+ }\en{Adds all new or changed files in the current folder and all subfolder to the next commit.}
|
|
|
+
|
|
|
\item
|
|
|
\codeline{git rm \placeholder{FILE\_NAME}}
|
|
|
\de{Entfernt die Datei \placeholder{FILE\_NAME} aus der Arbeitskopie und markiert sie als gelöscht im nächsten Commit.
|