Github: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „=Test= *ssh -T git@github.com Hi doktor-xinux! You've successfully authenticated, but GitHub does not provide shell access.“)
 
Zeile 2: Zeile 2:
 
*ssh -T git@github.com
 
*ssh -T git@github.com
 
  Hi doktor-xinux! You've successfully authenticated, but GitHub does not provide shell access.
 
  Hi doktor-xinux! You've successfully authenticated, but GitHub does not provide shell access.
 +
=Projekt Seite=
 +
git@github.com:doktor-xinux/localwiki.git
 +
=Beispiel neues Projekt=
 +
*echo "# localwiki" >> README.md
 +
*git init
 +
*git add README.md
 +
*git commit -m "first commit"
 +
*git branch -M main
 +
*git remote add origin git@github.com:doktor-xinux/localwiki.git
 +
*git push -u origin main
 +
=oder exsistierendes Projekt pushen=
 +
*git remote add origin git@github.com:doktor-xinux/localwiki.git
 +
*git branch -M main
 +
*git push -u origin main

Version vom 28. April 2022, 11:08 Uhr

Test

  • ssh -T git@github.com
Hi doktor-xinux! You've successfully authenticated, but GitHub does not provide shell access.

Projekt Seite

git@github.com:doktor-xinux/localwiki.git

Beispiel neues Projekt

  • echo "# localwiki" >> README.md
  • git init
  • git add README.md
  • git commit -m "first commit"
  • git branch -M main
  • git remote add origin git@github.com:doktor-xinux/localwiki.git
  • git push -u origin main

oder exsistierendes Projekt pushen

  • git remote add origin git@github.com:doktor-xinux/localwiki.git
  • git branch -M main
  • git push -u origin main