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
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
110
ADD 2013 - Git
burakaydn
1
1.4k
Android
burakaydn
0
180
Android
burakaydn
0
110
Other Decks in Programming
See All in Programming
画像コンペでのベースラインモデルの育て方
tattaka
3
1.7k
ライブ配信サービスの インフラのジレンマ -マルチクラウドに至ったワケ-
mirrativ
1
210
『リコリス・リコイル』に学ぶ!! 〜キャリア戦略における計画的偶発性理論と変わる勇気の重要性〜
wanko_it
1
530
Portapad紹介プレゼンテーション
gotoumakakeru
1
130
AIのメモリー
watany
13
1.5k
MCP連携で加速するAI駆動開発/mcp integration accelerates ai-driven-development
bpstudy
0
300
A Gopher's Guide to Vibe Coding
danicat
0
150
AIに安心して任せるためにTypeScriptで一意な型を作ろう
arfes0e2b3c
0
370
AIコーディングエージェント全社導入とセキュリティ対策
hikaruegashira
16
9.9k
GUI操作LLMの最新動向: UI-TARSと関連論文紹介
kfujikawa
0
940
Webinar: AI-Powered Development: Transformiere deinen Workflow mit Coding Tools und MCP Servern
danielsogl
0
130
Reactの歴史を振り返る
tutinoko
1
180
Featured
See All Featured
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.4k
Build your cross-platform service in a week with App Engine
jlugia
231
18k
Side Projects
sachag
455
43k
Agile that works and the tools we love
rasmusluckow
329
21k
How to train your dragon (web standard)
notwaldorf
96
6.2k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
161
15k
Docker and Python
trallard
45
3.5k
JavaScript: Past, Present, and Future - NDC Porto 2020
reverentgeek
50
5.5k
KATA
mclloyd
32
14k
Scaling GitHub
holman
462
140k
Adopting Sorbet at Scale
ufuk
77
9.5k
Optimizing for Happiness
mojombo
379
70k
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