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
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Burak Aydın
March 30, 2013
Programming
1
480
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
160
Building REST API with GoLang
burakaydn
0
290
Hack The ESP8266
burakaydn
0
340
REST API Design - My Practices
burakaydn
0
170
Hack The Jack
burakaydn
1
120
ADD 2013 - Git
burakaydn
1
1.4k
Android
burakaydn
0
180
Android
burakaydn
0
120
Other Decks in Programming
See All in Programming
Windows on Ryzen and I
seosoft
0
230
メタプログラミングで実現する「コードを仕様にする」仕組み/nikkei-tech-talk43
nikkei_engineer_recruiting
0
170
CSC307 Lecture 15
javiergs
PRO
0
240
今更考える「単一責任原則」 / Thinking about the Single Responsibility Principle
tooppoo
3
1.6k
技術検証結果の整理と解析をAIに任せよう!
keisukeikeda
0
110
PostgreSQL を使った快適な go test 環境を求めて
otakakot
0
530
DSPy入門 Pythonで実現する自動プロンプト最適化 〜人手によるプロンプト調整からの卒業〜
seaturt1e
1
650
go directiveを最新にしすぎないで欲しい話──あるいは、Go 1.26からgo mod initで作られるgo directiveの値が変わる話 / Go 1.26 リリースパーティ
arthur1
2
520
Vuetify 3 → 4 何が変わった?差分と移行ポイント10分まとめ
koukimiura
0
110
Ruby and LLM Ecosystem 2nd
koic
1
400
Unity6.3 AudioUpdate
cova8bitdots
0
120
ふつうの Rubyist、ちいさなデバイス、大きな一年
bash0c7
0
790
Featured
See All Featured
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
16k
Facilitating Awesome Meetings
lara
57
6.8k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
128
55k
Rails Girls Zürich Keynote
gr2m
96
14k
How to Ace a Technical Interview
jacobian
281
24k
How to Build an AI Search Optimization Roadmap - Criteria and Steps to Take #SEOIRL
aleyda
1
1.9k
エンジニアに許された特別な時間の終わり
watany
106
240k
ReactJS: Keep Simple. Everything can be a component!
pedronauck
666
130k
How To Speak Unicorn (iThemes Webinar)
marktimemedia
1
410
How Software Deployment tools have changed in the past 20 years
geshan
0
32k
Pawsitive SEO: Lessons from My Dog (and Many Mistakes) on Thriving as a Consultant in the Age of AI
davidcarrasco
0
82
More Than Pixels: Becoming A User Experience Designer
marktimemedia
3
350
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