blob: 1154b261b0396472c6a12dd1a6d69433367bfd31 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Termux und Git einrichten
+ Termux installieren
+ folgende Dateien auf das neue Gerät z.B. in den Downloade-Ordner kopieren:
- git (~/.ssh/)
- git.pub (~/.ssh/)
- config(~/.ssh/)
- zshrc (~/.zshrc) --> Datei hat einen Punkt im Namen in dem Verzeichnis
+ öffnen und oflgende Befehle eingeben:
- pkg update
- pkg upgrade
- pkg install openssh
- termux-setup-storage --> Zulassen bestätigen
- cp ~/storage/downloads/git* ~/.ssh/
- cp ~/storage/downloads/config ~/.ssh/
- pkg install zsh
- cp ~/storage/downloads/zshrc ~/.zshrc --> die Datei hat jetzt einen Punkt im Namen
- chsh --> zsh eingeben
- pkg install git
- rm ~/storage/downloads/git*
- rm ~/storage/downloads/
- mkdir ~/storage/downloads/git/
- ln -s ~/storage/downloads/git ~/git
- git clone git@git.iamfabulous.de:books ~/git/books
- git clone git@git.iamfabulous.de:githilfe ~/git/githilfe
|