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
ADD 2013 - Git
Search
Burak Aydın
June 15, 2013
Programming
1
1.4k
ADD 2013 - Git
ADD 2013 Git Presentation by @burakaydn and @orhunmertsimsek
Burak Aydın
June 15, 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
Git & Github
burakaydn
1
470
Android
burakaydn
0
180
Android
burakaydn
0
110
Other Decks in Programming
See All in Programming
Deoptimization: How YJIT Speeds Up Ruby by Slowing Down / RubyKaigi 2025
k0kubun
0
670
Youtube Lofier - Chrome拡張開発
ninikoko
0
2.4k
海外のアプリで見かけたかっこいいTransitionを真似てみる
shogotakasaki
1
160
リストビュー画面UX改善の振り返り
splcywolf
0
130
CRE Meetup!ユーザー信頼性を支えるエンジニアリング実践例の発表資料です
tmnb
0
640
自分のために作ったアプリが、グローバルに使われるまで / Indie App Development Lunch LT
pixyzehn
1
150
小田原でみんなで一句詠みたいな #phpcon_odawara
stefafafan
0
320
MCP調べてみました! / Exploring MCP
uhzz
2
2.2k
Kamal 2 – Get Out of the Cloud
aleksandrov
1
180
Do Dumb Things
mitsuhiko
0
430
技術選定を未来に繋いで活用していく
sakito
3
110
AI Coding Agent Enablement - エージェントを自走させよう
yukukotani
14
5.9k
Featured
See All Featured
The MySQL Ecosystem @ GitHub 2015
samlambert
251
12k
Intergalactic Javascript Robots from Outer Space
tanoku
270
27k
The Invisible Side of Design
smashingmag
299
50k
Into the Great Unknown - MozCon
thekraken
37
1.7k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
119
51k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
194
16k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
34
2.2k
Code Review Best Practice
trishagee
67
18k
The Cult of Friendly URLs
andyhume
78
6.3k
Become a Pro
speakerdeck
PRO
27
5.3k
How To Stay Up To Date on Web Technology
chriscoyier
790
250k
Designing for Performance
lara
607
69k
Transcript
Burak Aydın – burakaydin.net.tr @burakaydn Mert Şimsek – mertsimsek.net @orhunmertsimsek
git & github 13.06.2013 1
git Version Control Like Him
Dallanma ve Birleştirme Açık Kaynak Dağıtık Çalışma Hız ve Boyut
None
None
Windows http://git-scm.com/download/win Linux sudo apt-get install git-core Mac
~/.gitconfig $ git config –-global user.name "Ad Soyad" $ git
config –-global user.email "epost@dresi.com" Konfigürasyon
Yeni bir kod deposu $ git init $ echo "/bin"
>> .gitignore $ echo "/gen" >> .gitignore $ git add .
Initial commit $ git commit –m "neden?"
git log $ git log commit b75757a711da3cdc7d102ac9c6c1f23dd1cc2fde Author: andromedateam <orhunmertsimsek@gmail.com>
Date: Wed Jun 12 17:45:38 2013 +0300 Initial commit
git status $ git status # On branch master #
Untracked files: # (use "git add <file>..." to include in what will be committed) # # Git_CheatSheet_tr.mdnothing added to commit but untracked files present (use "git add" to track)
Uzak kod deposu $ git remote add origin git@git... $
git push origin master $ git pull origin master $ git clone git@github.com:mertsimsek/git- cheatsheet.git
$ git branch yeni_özellik $ git checkout branch_ismi $ git
merge branch_ismi
$ git push –f origin master $ git pull -f
git tag $ git tag etiket_adı $ git checkout etiket_adı
Github – github.com Bitbucket – bitbucket.com Assembla
– assembla.com Google Code – code.google.com
is the best place to share code
None
None
goo.gl/UkMV8
DEMO
None
Teşekkürler… Burak Aydın – burakaydin.net.tr @burakaydn Mert Şimsek – mertsimsek.net
@orhunmertsimsek