Linux.git: Unterschied zwischen den Versionen

Aus OrgaMon Wiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „ on github: enable 2 Factor Autentification local: generate a key on github: store the .pub Key in github local: login in github ssh -T git@github.com say "yes" change the origin of the git git remote set-url origin git@github.com:Andreas-Filsinger/Polyzalos.git“)
 
 
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
== "git push" to github ==
* Es ist komplex, hier in aller Kürze
   
   
== As Up ==
  on github: enable 2 Factor Autentification  
  on github: enable 2 Factor Autentification  
  local: generate a key
  local: generate a key
  on github: store the .pub Key in github
ssh-keygen -t ed25519 -C "andreas.filsinger@orgamon.org"
  on github: store the .pub-Part Key in github "SSH Keys save"
  local: login in github
  local: login in github
   ssh -T git@github.com
   ssh -T git@github.com
Zeile 8: Zeile 14:
  change the origin of the git
  change the origin of the git
  git remote set-url origin git@github.com:Andreas-Filsinger/Polyzalos.git
  git remote set-url origin git@github.com:Andreas-Filsinger/Polyzalos.git
== Daily Driver ==
git add -u
git commit -m "Describe todays Work"
git push

Aktuelle Version vom 10. Februar 2026, 20:24 Uhr

"git push" to github

  • Es ist komplex, hier in aller Kürze

As Up

on github: enable 2 Factor Autentification 
local: generate a key
ssh-keygen -t ed25519 -C "andreas.filsinger@orgamon.org"
on github: store the .pub-Part Key in github "SSH Keys save"
local: login in github
 ssh -T git@github.com
say "yes"
change the origin of the git
git remote set-url origin git@github.com:Andreas-Filsinger/Polyzalos.git

Daily Driver

git add -u
git commit -m "Describe todays Work"
git push