27 lines
479 B
Markdown
27 lines
479 B
Markdown
|
|
||
|
## Erstelle ein Git Repository
|
||
|
|
||
|
Erstelle einen Ordner in der Kommandozeile und wechsele in diesen hinein
|
||
|
|
||
|
```bash
|
||
|
mkdir meinOrdner
|
||
|
cd meinOrdner
|
||
|
```
|
||
|
|
||
|
Initialisiere ein Git Repository mit dem `git init` Befehl
|
||
|
|
||
|
``` bash
|
||
|
git init
|
||
|
```
|
||
|
|
||
|
Dies erstellt in dem Ordner eine `.git` Ordner
|
||
|
|
||
|
Linux/Mac
|
||
|
```bash
|
||
|
$ ls -la
|
||
|
total 40
|
||
|
drwxr-xr-x 1 GregoryHammond 4096 0 May 2 13:39 ./
|
||
|
drwxr-xr-x 1 GregoryHammond 4096 0 May 2 13:13 ../
|
||
|
drwxr-xr-x 1 GregoryHammond 4096 0 May 2 13:39 .git/
|
||
|
```
|