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
API Platformを活用したPHPによる本格的なWeb API開発 / api-platform-book-intro
ttskch
1
130
メタプログラミングで実現する「コードを仕様にする」仕組み/nikkei-tech-talk43
nikkei_engineer_recruiting
0
170
Takumiから考えるSecurity_Maturity_Model.pdf
gessy0129
1
140
Swift ConcurrencyでよりSwiftyに
yuukiw00w
0
250
猫の手も借りたい!ので AIエージェント猫を作って社内に放した話 Claude Code × Container Lambda の Slack Bot "DevNeko"
naramomi7
0
260
モジュラモノリスにおける境界をGoのinternalパッケージで守る
magavel
0
3.5k
AI Assistants for Your Angular Solutions
manfredsteyer
PRO
0
130
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
390
技術検証結果の整理と解析をAIに任せよう!
keisukeikeda
0
110
TROCCOで実現するkintone+BigQueryによるオペレーション改善
ssxota
0
170
ポーリング処理廃止によるイベント駆動アーキテクチャへの移行
seitarof
1
220
Claude Codeログ基盤の構築
giginet
PRO
2
760
Featured
See All Featured
Max Prin - Stacking Signals: How International SEO Comes Together (And Falls Apart)
techseoconnect
PRO
0
110
Game over? The fight for quality and originality in the time of robots
wayneb77
1
130
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
31
10k
16th Malabo Montpellier Forum Presentation
akademiya2063
PRO
0
67
How to Talk to Developers About Accessibility
jct
2
150
Prompt Engineering for Job Search
mfonobong
0
180
The Power of CSS Pseudo Elements
geoffreycrofte
82
6.2k
コードの90%をAIが書く世界で何が待っているのか / What awaits us in a world where 90% of the code is written by AI
rkaga
60
42k
The Mindset for Success: Future Career Progression
greggifford
PRO
0
270
A Guide to Academic Writing Using Generative AI - A Workshop
ks91
PRO
0
230
WCS-LA-2024
lcolladotor
0
480
What's in a price? How to price your products and services
michaelherold
247
13k
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