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
120
Git & Github
burakaydn
1
480
Android
burakaydn
0
180
Android
burakaydn
0
120
Other Decks in Programming
See All in Programming
Mastering Event Sourcing: Your Parents Holidayed in Yugoslavia
super_marek
0
130
仕様漏れ実装漏れをなくすトレーサビリティAI基盤のご紹介
orgachem
PRO
7
3.6k
Ruby and LLM Ecosystem 2nd
koic
1
1.4k
Migration to Signals, Signal Forms, Resource API, and NgRx Signal Store @Angular Days 03/2026 Munich
manfredsteyer
PRO
0
190
Claude Code Skill入門
mayahoney
0
450
AI活用のコスパを最大化する方法
ochtum
0
360
The free-lunch guide to idea circularity
hollycummins
0
390
存在論的プログラミング: 時間と存在を記述する
koriym
5
580
Symfonyの特性(設計思想)を手軽に活かす特性(trait)
ickx
0
110
AI-DLC 入門 〜AIコーディングの本質は「コード」ではなく「構造」〜 / Introduction to AI-DLC: The Essence of AI Coding Is Not “Code” but “Structure”
seike460
PRO
0
110
モックわからないマン卒業記 ~振る舞いを起点に見直した、フロントエンドテストにおけるモックの使いどころ~
tasukuwatanabe
3
430
Geminiをパートナーに神社DXシステムを個人開発した話(いなめぐDX 開発振り返り)
fujiba
0
120
Featured
See All Featured
Build The Right Thing And Hit Your Dates
maggiecrowley
39
3.1k
The MySQL Ecosystem @ GitHub 2015
samlambert
251
13k
Typedesign – Prime Four
hannesfritz
42
3k
The Invisible Side of Design
smashingmag
302
51k
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
87
Leo the Paperboy
mayatellez
5
1.6k
Gemini Prompt Engineering: Practical Techniques for Tangible AI Outcomes
mfonobong
2
340
Agile Leadership in an Agile Organization
kimpetersen
PRO
0
120
Helping Users Find Their Own Way: Creating Modern Search Experiences
danielanewman
31
3.1k
Automating Front-end Workflow
addyosmani
1370
200k
Exploring the relationship between traditional SERPs and Gen AI search
raygrieselhuber
PRO
2
3.8k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.4k
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