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
14
ワイガヤ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
19
Featured
See All Featured
Git: the NoSQL Database
bkeepers
PRO
432
66k
Learning to Love Humans: Emotional Interface Design
aarron
275
41k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
25
1.8k
Reality Check: Gamification 10 Years Later
codingconduct
0
2k
The Hidden Cost of Media on the Web [PixelPalooza 2025]
tammyeverts
2
240
Ecommerce SEO: The Keys for Success Now & Beyond - #SERPConf2024
aleyda
1
1.8k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
38
2.8k
How to Grow Your eCommerce with AI & Automation
katarinadahlin
PRO
1
130
We Analyzed 250 Million AI Search Results: Here's What I Found
joshbly
1
910
YesSQL, Process and Tooling at Scale
rocio
174
15k
The Pragmatic Product Professional
lauravandoore
37
7.2k
Avoiding the “Bad Training, Faster” Trap in the Age of AI
tmiket
0
97
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
< ファイル名>
実演します 🎉