$30 off During Our Annual Pro Sale. View Details »
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
ワイガヤLT会 #2:gitの「めんどくさい」を解決
Search
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
130
はじめてのWeb API体験 ー 飲食店検索アプリを作ろうー
akinko_0915
0
250
Rubyらしさとは?
akinko_0915
0
16
Featured
See All Featured
BBQ
matthewcrist
89
9.9k
Done Done
chrislema
186
16k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.2k
Embracing the Ebb and Flow
colly
88
4.9k
Mobile First: as difficult as doing things right
swwweet
225
10k
Rebuilding a faster, lazier Slack
samanthasiow
84
9.3k
Six Lessons from altMBA
skipperchong
29
4.1k
YesSQL, Process and Tooling at Scale
rocio
174
15k
A Modern Web Designer's Workflow
chriscoyier
697
190k
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
285
14k
Understanding Cognitive Biases in Performance Measurement
bluesmoon
31
2.7k
Optimizing for Happiness
mojombo
379
70k
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
< ファイル名>
実演します 🎉