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ハンズオン_vscodeから作成_.pdf
Search
cha1ra
November 12, 2021
0
340
githubハンズオン_vscodeから作成_.pdf
cha1ra
November 12, 2021
Tweet
Share
More Decks by cha1ra
See All by cha1ra
生成AIと読み解くLaravelの進化史:コミットメッセージからの洞察
cha1ra
0
590
githubハンズオン_リポジトリclone_.pdf
cha1ra
0
530
Puppeteer Introduction and my original command "dk"
cha1ra
0
130
Introduction of Babel
cha1ra
0
97
ProgWrap 企画書 v1.2.1
cha1ra
0
97
web_speech_api.pdf
cha1ra
0
400
はじめてのスクレイピング!- bs4 と Selenium を 使ってみよう! -
cha1ra
0
1.7k
Web Service Hackathon @Dec. 6, 2018
cha1ra
0
31
Featured
See All Featured
Amusing Abliteration
ianozsvald
0
120
Test your architecture with Archunit
thirion
1
2.2k
The browser strikes back
jonoalderson
0
760
Navigating the moral maze — ethical principles for Al-driven product design
skipperchong
2
280
Connecting the Dots Between Site Speed, User Experience & Your Business [WebExpo 2025]
tammyeverts
11
850
KATA
mclloyd
PRO
35
15k
How to train your dragon (web standard)
notwaldorf
97
6.5k
Lessons Learnt from Crawling 1000+ Websites
charlesmeaden
PRO
1
1.1k
SERP Conf. Vienna - Web Accessibility: Optimizing for Inclusivity and SEO
sarafernandez
1
1.3k
Dominate Local Search Results - an insider guide to GBP, reviews, and Local SEO
greggifford
PRO
0
96
Docker and Python
trallard
47
3.8k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.4k
Transcript
don-bu-rakko.com 登場人物 自分のパソコン GitHub
don-bu-rakko.com 1. フォルダを作成 例えば... sample という名前のフォルダを作る sample
don-bu-rakko.com sample .git/ 2. githubリポジトリを作成する sample VSCode を使って作成するとで、githubのリポジトリ(保存場所)が作成される。この時同時に、履歴管理の 仕組み(
.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反映 →
...)