Linux.git: Unterschied zwischen den Versionen

Aus OrgaMon Wiki
Zur Navigation springen Zur Suche springen
Zeile 20: Zeile 20:
  git commit -m "Describe todays Work"
  git commit -m "Describe todays Work"
  git push
  git push
== Tag it ==
#
# Sample for set a tag "9.004"
#
git tag -a 9.004 -m "Rev. 9.004 - 04.03.2026"
git push origin 9.004

Version vom 4. März 2026, 19:27 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

Tag it

#
# Sample for set a tag "9.004"
#
git tag -a 9.004 -m "Rev. 9.004 - 04.03.2026"
git push origin 9.004