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
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
Git & Github
burakaydn
1
480
Android
burakaydn
0
180
Android
burakaydn
0
110
Other Decks in Programming
See All in Programming
AIを活用し、今後に備えるための技術知識 / Basic Knowledge to Utilize AI
kishida
21
5.6k
プロパティベーステストによるUIテスト: LLMによるプロパティ定義生成でエッジケースを捉える
tetta_pdnt
0
300
アセットのコンパイルについて
ojun9
0
120
AI時代のUIはどこへ行く?
yusukebe
16
8.7k
Vue・React マルチプロダクト開発を支える Vite
andpad
0
110
MCPとデザインシステムに立脚したデザインと実装の融合
yukukotani
4
1.4k
Putting The Genie in the Bottle - A Crash Course on running LLMs on Android
iurysza
0
140
為你自己學 Python - 冷知識篇
eddie
1
350
Performance for Conversion! 分散トレーシングでボトルネックを 特定せよ
inetand
0
120
Tool Catalog Agent for Bedrock AgentCore Gateway
licux
6
2.3k
Kiroの仕様駆動開発から見えてきたAIコーディングとの正しい付き合い方
clshinji
1
210
もうちょっといいRubyプロファイラを作りたい (2025)
osyoyu
0
400
Featured
See All Featured
It's Worth the Effort
3n
187
28k
BBQ
matthewcrist
89
9.8k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
46
7.6k
A better future with KSS
kneath
239
17k
Scaling GitHub
holman
463
140k
Become a Pro
speakerdeck
PRO
29
5.5k
The World Runs on Bad Software
bkeepers
PRO
70
11k
Practical Tips for Bootstrapping Information Extraction Pipelines
honnibal
PRO
23
1.4k
Making the Leap to Tech Lead
cromwellryan
135
9.5k
CoffeeScript is Beautiful & I Never Want to Write Plain JavaScript Again
sstephenson
162
15k
Code Reviewing Like a Champion
maltzj
525
40k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
231
53k
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 "
[email protected]
" 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 <
[email protected]
>
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
[email protected]
: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