Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions 01/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
<title>devmentor.pl - JS Tools - #01</title>
</head>
<body>
<h1>Git jest fajny!</h1>
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mam nadzieje, że taki pozostanie ;)

PS. Tak wygląda komentarz do jednej linii kodu

<p>GitHub też jest fajny!</p>
</body>
</html>
4 changes: 2 additions & 2 deletions 02/app.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
console.log('Działa! Gratuluję uruchomienia JS z poziomu Node.js!');
console.log('Moja wersja Node.js to: [tutaj wpisz swoją wersję]');
console.log('Moja wersja npm to: [tutaj wpisz swoją wersję]');
console.log('Moja wersja Node.js to: v22.17.0');
console.log('Moja wersja npm to: 11.6.4');
Comment on lines +2 to +3
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wersje są ok!

PS. Tak wygląda komentarz do wielu linii kodu (zwróć uwagę na numery linii powyżej komentarza)

38 changes: 38 additions & 0 deletions 03/JS-Narzędzia-moduł I.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
## Poznane komendy Git i GitHub:

- **git remote set-url origin git@github.....**- zmiana zdalnego urls z HTTPS na SSH
- **git revert --no-commit [id]** - wracanie do struktury sprzed jakiegoś commita

Współdzielenie projektu:

- **fork** - utworzenie kopii plików
- **git clone git@github...** - pobranie plików na dysk lokalny
- **commit** - wprowadzanie zmian
- **pull request** - prośba o dodanie zmian do istniejącego projektu

## Poznane komendy VSC:

**Ctrl + Shift + v** - przełączanie widoków plików .md

## Wprowadzenie do Gita i GitHuba:

- https://learngitbranching.js.org/?locale=pl
- https://devmentor.pl/b/git-i-github-wlasne-repozytorium-clone-fork-i-pull-request

## Przydatne linki:

Markdown: https://docs.github.com/en/get-started/writing-on-github/getting-started-with-writing-and-formatting-on-github/basic-writing-and-formatting-syntax

Markdown-Cheatsheet: https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet

Tworzenie commitów: https://highlab.pl/conventional-commits/

Zasady tworzenia wiadomości w commitach: https://chris.beams.io/git-commit

Jak stworzyć README profilowe na GitHubie: https://devmentor.pl/b/jak-stworzyc-readme-profilowe-na-githubie

Web development The Net Ninja: https://www.youtube.com/channel/UCW5YeuERMmlnqo4oq8vwUpg/playlists

Coding games: https://www.codingame.com/start/

Nauka React, Node.js: https://fullstackopen.com/en/
Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍