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
Aki Nakahara
June 26, 2025
0
8
ワイガヤLT会 #2:gitの「めんどくさい」を解決
Aki Nakahara
June 26, 2025
Tweet
Share
More Decks by Aki Nakahara
See All by Aki Nakahara
はじめてのWeb API体験 ー 飲食店検索アプリを作ろうー
akinko_0915
0
190
Rubyらしさとは?
akinko_0915
0
11
Featured
See All Featured
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.6k
Site-Speed That Sticks
csswizardry
10
780
Agile that works and the tools we love
rasmusluckow
329
21k
Fantastic passwords and where to find them - at NoRuKo
philnash
51
3.4k
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
139
34k
What's in a price? How to price your products and services
michaelherold
246
12k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
18
1.1k
[RailsConf 2023] Rails as a piece of cake
palkan
56
5.8k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
358
30k
Code Review Best Practice
trishagee
70
19k
Code Reviewing Like a Champion
maltzj
525
40k
Making Projects Easy
brettharned
117
6.3k
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
< ファイル名>
実演します 🎉