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
sappoRo.R #12 初心者セッション
kosugitti
0
230
自分ひとりから始められる生産性向上の取り組み #でぃーぷらすオオサカ
irof
8
2.6k
Conform を推す - Advocating for Conform
mizoguchicoji
3
680
技術を根付かせる / How to make technology take root
kubode
1
240
Amazon Q Developer Proで効率化するAPI開発入門
seike460
PRO
0
110
Domain-Driven Transformation
hschwentner
2
1.9k
JavaScriptツール群「UnJS」を5分で一気に駆け巡る!
k1tikurisu
10
1.8k
Pythonでもちょっとリッチな見た目のアプリを設計してみる
ueponx
1
480
時計仕掛けのCompose
mkeeda
1
280
バックエンドのためのアプリ内課金入門 (サブスク編)
qnighy
8
1.7k
DROBEの生成AI活用事例 with AWS
ippey
0
130
いりゃあせ、PHPカンファレンス名古屋2025 / Welcome to PHP Conference Nagoya 2025
ttskch
1
270
Featured
See All Featured
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
A Tale of Four Properties
chriscoyier
158
23k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
20
2.4k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
120k
VelocityConf: Rendering Performance Case Studies
addyosmani
328
24k
Intergalactic Javascript Robots from Outer Space
tanoku
270
27k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
47
5.2k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Chrome DevTools: State of the Union 2024 - Debugging React & Beyond
addyosmani
3
310
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
Fight the Zombie Pattern Library - RWD Summit 2016
marcelosomers
232
17k
個人開発の失敗を避けるイケてる考え方 / tips for indie hackers
panda_program
99
18k
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