Konfiguracja Gita
-
Konfigurowanie kluczy SSH.
Połącz się z
https://github.com/<username>
. Kliknij w Account Settings → SSH Public Keys → Add another public key. Skopiuj zawartość plikuid_rsa.pub
do odpowiedniego pola tekstowego.(Uwaga: w dokumencie Set Up Git jest opisane dokładniej jak wygenerować
id_rsa.pub
.) -
Określenie użytkownika oraz jego adresu email.
$ git config --global user.name "Firstname Lastname"
$ git config --global user.email "your_email@youremail.com" -
Konfigurowanie GitHub token.
Pobierz token z Account Settings → Account Admin. Wykonaj poniższe:
$ git config --global github.user username
$ git config --global github.token 0123456789yourf0123456789tokenUwaga: zmiana hasła wymaga aktualizacji tokena.
Utworzenie repozytorium
Kliknij w https://github.com/repositories/new
(poprzez Dashboard → New Repository).
Stwórz plik README (zalecane)
$ mkdir ~/Hello-World
$ cd ~/Hello-World
$ git init
$ touch README
## przeslanie do lokalnego repo
$ git add README
$ git commit -m 'first commit'
## przeslanie na github
$ git remote add origin git@github.com:<username>/Hello-World.git
$ git push origin master
Przykład
Repozytorium zawierające przykłady z książki Praca magisterska ...
$ git init
Initialized empty Git repository in /home/tomek/Projekty/LaTeX/text/book-examples-git/.git/
$ git add *
$ git status
# On branch master
#
# Initial commit
#
# Changes to be committed:
...
$ git commit -m 'first commit'
$ git remote add origin git@github.com:hrpunio/pmdzpl.git
$ git push -u origin master
Repozytorium zawierające przykłady dot. akceptacji Oprogramowania Open Source
$ git init
Initialized empty Git repository in /home/tomek/Projekty/HP/hbook/aoos-data-git/.git/
$ git add *
$ git commit -m 'first commit'
$ git remote add origin git@github.com:hrpunio/aoos.git
$ git push -u origin master
$ git status
Brak komentarzy:
Prześlij komentarz