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
ワイガヤLT会 #2:gitの「めんどくさい」を解決
Search
Sponsored
·
Your Podcast. Everywhere. Effortlessly.
Share. Educate. Inspire. Entertain. You do you. We'll handle the rest.
→
Aki Nakahara
June 26, 2025
0
13
ワイガヤLT会 #2:gitの「めんどくさい」を解決
Aki Nakahara
June 26, 2025
Tweet
Share
More Decks by Aki Nakahara
See All by Aki Nakahara
SidekiqでAIに商品説明を生成させてみた
akinko_0915
0
160
はじめてのWeb API体験 ー 飲食店検索アプリを作ろうー
akinko_0915
0
270
Rubyらしさとは?
akinko_0915
0
17
Featured
See All Featured
The SEO identity crisis: Don't let AI make you average
varn
0
400
Creating an realtime collaboration tool: Agile Flush - .NET Oxford
marcduiker
35
2.4k
Exploring anti-patterns in Rails
aemeredith
2
270
The Impact of AI in SEO - AI Overviews June 2024 Edition
aleyda
5
750
Claude Code のすすめ
schroneko
67
210k
Art, The Web, and Tiny UX
lynnandtonic
304
21k
How to build an LLM SEO readiness audit: a practical framework
nmsamuel
1
650
brightonSEO & MeasureFest 2025 - Christian Goodrich - Winning strategies for Black Friday CRO & PPC
cargoodrich
3
110
My Coaching Mixtape
mlcsv
0
58
The AI Revolution Will Not Be Monopolized: How open-source beats economies of scale, even for LLMs
inesmontani
PRO
3
3.1k
Highjacked: Video Game Concept Design
rkendrick25
PRO
1
300
More Than Pixels: Becoming A User Experience Designer
marktimemedia
3
330
Transcript
gitの「めんどくさい」を解決 Akinko presented by 26th in June ワイガヤLT会 🌻
自己紹介 Classi 株式会社 新卒エンジニア Ruby で日記を書くことはじめました (MyGemDays) Akinko Podcast 「前向くラジオ」やってます
( 更新できるように頑張ります…) 古着好きです。ユニークな柄な感じじゃなくて、質が高くて状態が良い服を見つけるのが好き 最近、南アジアの料理、Dal をレシピ見ずに作れるようになった
git 使うときこう思ったことありませんか?
git のコマンド覚えるのめんどくさい
例えば… git push --force-with-lease origin < ブランチ名>
え、覚えれない覚えれない
コミットメッセージ、早く綺麗に書きたい
例えば… fix: < 修正したこと> add: < 新しく追加した機能やファイル> refactor: < リファクタリングしたところ>
接頭辞のパターンを決めたい
いちいち合う単語調べてる暇ない
git のコマンド覚えるのめんどくさい コミットメッセージ、早く綺麗に書きたい
git のコマンド覚えるのめんどくさい git alias ( エイリアス) が解決!
git alias ( エイリアス) コマンドに別名をつけることができる git push --force-with-lease origin <
ブランチ名> g pushf origin < ブランチ名> これなら覚えられる!
git alias ( エイリアス) 設定方法 git config --global alias.pushf ’push
--force-with-lease’ git config --global alias.< 別名> < オリジナルのコマンド> git config --global alias.commit com
コミットメッセージ、早く綺麗に書きたい commit.template が解決!
commit.template コミットメッセージのテンプレートを設定できる 何をしたかが一目でわ かるコミットになるね
commit.template の設定方法 ① テンプレートファイルをつくる ② テンプレートを設定する git config --local commit.template
< ファイル名>
実演します 🎉