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
ファインディの テックブログ爆誕までの軌跡
starfish719
2
1.1k
Honoのおもしろいミドルウェアをみてみよう
yusukebe
1
200
第3回 Snowflake 中部ユーザ会- dbt × Snowflake ハンズオン
hoto17296
4
360
CNCF Project の作者が考えている OSS の運営
utam0k
5
690
[JAWS-UG横浜 #79] re:Invent 2024 の DB アップデートは Multi-Region!
maroon1st
1
140
Compose でデザインと実装の差異を減らすための取り組み
oidy
1
300
なぜイベント駆動が必要なのか - CQRS/ESで解く複雑系システムの課題 -
j5ik2o
7
2.5k
[Fin-JAWS 第38回 ~re:Invent 2024 金融re:Cap~]FaultInjectionServiceアップデート@pre:Invent2024
shintaro_fukatsu
0
400
最近のVS Codeで気になるニュース 2025/01
74th
1
250
“あなた” の開発を支援する AI エージェント Bedrock Engineer / introducing-bedrock-engineer
gawa
11
1.8k
ARA Ansible for the teams
kksat
0
150
Introduction to kotlinx.rpc
arawn
0
630
Featured
See All Featured
Docker and Python
trallard
44
3.3k
Visualization
eitanlees
146
15k
It's Worth the Effort
3n
184
28k
How to Think Like a Performance Engineer
csswizardry
22
1.3k
Adopting Sorbet at Scale
ufuk
74
9.2k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
The Cost Of JavaScript in 2023
addyosmani
47
7.3k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
44
9.4k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
193
16k
Product Roadmaps are Hard
iamctodd
PRO
50
11k
VelocityConf: Rendering Performance Case Studies
addyosmani
328
24k
Git: the NoSQL Database
bkeepers
PRO
427
64k
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