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
Git & Github
Search
Burak Aydın
March 30, 2013
Programming
1
470
Git & Github
Git & Github - GDG Ankara - 30/03/2013
Burak Aydın
March 30, 2013
Tweet
Share
More Decks by Burak Aydın
See All by Burak Aydın
Building REST API with GoLang
burakaydn
0
150
Building REST API with GoLang
burakaydn
0
290
Hack The ESP8266
burakaydn
0
340
REST API Design - My Practices
burakaydn
0
160
Hack The Jack
burakaydn
1
110
ADD 2013 - Git
burakaydn
1
1.4k
Android
burakaydn
0
180
Android
burakaydn
0
110
Other Decks in Programming
See All in Programming
サービスレベルを管理してアジャイルを加速しよう!! / slm-accelerate-agility
tomoyakitaura
1
200
Cursorを活用したAIプログラミングについて 入門
rect
0
130
Enterprise Web App. Development (1): Build Tool Training Ver. 5
knakagawa
1
120
DevOpsDaysTokyo2025社内副業で他部門へ_越境_して見えた価値再定義最大1か月のリードタイムを10分に短縮したDevOps実践.pdf
susumutomita
0
110
ウォンテッドリーの「ココロオドル」モバイル開発 / Wantedly's "kokoro odoru" mobile development
kubode
1
240
Instrumentsを使用した アプリのパフォーマンス向上方法
hinakko
0
220
20250429 - CNTUG Meetup #67 / DevOps Taiwan Meetup #69 - Deep Dive into Tetragon: Building Runtime Security and Observability with eBPF
tico88612
0
160
タイムゾーンの奥地は思ったよりも闇深いかもしれない
suguruooki
1
810
Thank you <💅>, What's the Next?
ahoxa
1
580
AIコーディングエージェントを 「使いこなす」ための実践知と現在地 in ログラス / How to Use AI Coding Agent in Loglass
rkaga
4
1.1k
カオスに立ち向かう小規模チームの装備の選択〜フルスタックTSという装備の強み _ 弱み〜/Choosing equipment for a small team facing chaos ~ Strengths and weaknesses of full-stack TS~
bitkey
1
130
今話題のMCPサーバーをFastAPIでサッと作ってみた
yuukis
0
100
Featured
See All Featured
Building Better People: How to give real-time feedback that sticks.
wjessup
367
19k
YesSQL, Process and Tooling at Scale
rocio
172
14k
Put a Button on it: Removing Barriers to Going Fast.
kastner
60
3.8k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
12k
StorybookのUI Testing Handbookを読んだ
zakiyama
29
5.7k
The Invisible Side of Design
smashingmag
299
50k
A better future with KSS
kneath
239
17k
Writing Fast Ruby
sferik
628
61k
Rebuilding a faster, lazier Slack
samanthasiow
81
9k
Done Done
chrislema
184
16k
Side Projects
sachag
453
42k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
104
19k
Transcript
Burak Aydın – burakaydin.net.tr
git
Dağıtık Versiyon Kontrol Sistemi (DVCS) Client = Server Çevrimdışı Hızlı
smaller is faster
None
None
Nasıl Yüklüyoruz
Linux: apt-get install git-core ?Mac OS X: brew install git
Windows: msysgit.github.com
init add commit remote push pull clone branch merge checkout
–f gitk .gitignore log status stash reflog blame
git config --global user.name ... git config --global user.email ...
Yeni bir kod deposu git init touch .gitignore echo "/bin"
>> .gitignore echo "/gen" >> .gitignore git add .
Initial commit git commit –m ‘’niçin?’’
remote git remote add origin git@git... git push origin master
git pull origin master git clone git@git...
git blame dosya_ismi git stash --help git diff => ?
git branch özellik git checkout –b özellik git checkout branch_ismi
git merge branch_ismi
git push –f … pull use the force Luke
git log git status git reflog git gitk
Kaynaklar ogit-scm.org ohttp://try.github.com/ ohttp://pcottle.github.com/learnGitBranching/ ohttp://jonas.nitro.dk/git/quick-reference.html
github
San Francisco - 2008 153 çalışan En büyük kod deposu
Kod paylaşımı için en iyi yer?
None
demo
?
None