Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
githubハンズオン_リポジトリclone_.pdf
Search
cha1ra
November 12, 2021
0
520
githubハンズオン_リポジトリclone_.pdf
cha1ra
November 12, 2021
Tweet
Share
More Decks by cha1ra
See All by cha1ra
生成AIと読み解くLaravelの進化史:コミットメッセージからの洞察
cha1ra
0
530
githubハンズオン_vscodeから作成_.pdf
cha1ra
0
340
Puppeteer Introduction and my original command "dk"
cha1ra
0
110
Introduction of Babel
cha1ra
0
83
ProgWrap 企画書 v1.2.1
cha1ra
0
95
web_speech_api.pdf
cha1ra
0
390
はじめてのスクレイピング!- bs4 と Selenium を 使ってみよう! -
cha1ra
0
1.6k
Web Service Hackathon @Dec. 6, 2018
cha1ra
0
27
Featured
See All Featured
Build The Right Thing And Hit Your Dates
maggiecrowley
38
2.9k
Building a Scalable Design System with Sketch
lauravandoore
463
33k
Agile that works and the tools we love
rasmusluckow
331
21k
Thoughts on Productivity
jonyablonski
71
4.9k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
34
2.5k
It's Worth the Effort
3n
187
28k
YesSQL, Process and Tooling at Scale
rocio
173
15k
The Web Performance Landscape in 2024 [PerfNow 2024]
tammyeverts
10
890
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.5k
The Cult of Friendly URLs
andyhume
79
6.6k
Faster Mobile Websites
deanohume
310
31k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.2k
Transcript
don-bu-rakko.com 登場人物 自分のパソコン GitHub
don-bu-rakko.com 1. githubの保存場所 (リポジトリ) を作成 sample 例えば... sample という名前のリポジトリを作る
don-bu-rakko.com sample .git/ 2. githubにアップロードする用のフォルダを作成する sample VSCode を使って作成することで、履歴管理の仕組み &
アップロード先URL含んだフォルダ( .git/ )が作成される。 .git/ は非表示フォルダのため、ファイル一覧には表示されない。
don-bu-rakko.com sample .git/ 3. ファイルを作成・編集する sample PC上に作ったフォルダ(ディレクトリ)の中でファイルを作成・編集する。 index.html
style.css
don-bu-rakko.com sample .git/ 4. 変更内容を保存する (add, commit) sample index.html
style.css フォーム作成 メニュー作成 どんな変更を実施したのか?というメッセージ付きで保存する
don-bu-rakko.com sample commit 履歴 sample .git/ 5. 変更内容をgithubに保存 (push)
index.html style.css フォーム作成 メニュー作成 フォーム作成 メニュー作成 index.html style.css 変更履歴(commit log)とともにgithubにファイルがアップロードされる
don-bu-rakko.com 6. 3~5 を繰り返す (ファイル編集 → 履歴保存 → github反映 →
...)