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
Git & Github
Search
Burak Aydın
March 30, 2013
Programming
1
470
Git & Github
Git & Github - GDG Ankara - 30/03/2013
Burak Aydın
March 30, 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
ADD 2013 - Git
burakaydn
1
1.4k
Android
burakaydn
0
180
Android
burakaydn
0
110
Other Decks in Programming
See All in Programming
Rails アプリ地図考 Flush Cut
makicamel
1
110
Grafana Cloudとソラカメ
devoc
0
140
AIの力でお手軽Chrome拡張機能作り
taiseiue
0
170
AWSマネコンに複数のアカウントで入れるようになりました
yuhta28
2
160
時計仕掛けのCompose
mkeeda
1
290
JavaScriptツール群「UnJS」を5分で一気に駆け巡る!
k1tikurisu
9
1.8k
昭和の職場からアジャイルの世界へ
kumagoro95
1
360
プログラミング言語学習のススメ / why-do-i-learn-programming-language
yashi8484
0
130
第3回 Snowflake 中部ユーザ会- dbt × Snowflake ハンズオン
hoto17296
4
370
Immutable ActiveRecord
megane42
0
140
Honoをフロントエンドで使う 3つのやり方
yusukebe
7
3.1k
SpringBoot3.4の構造化ログ #kanjava
irof
2
980
Featured
See All Featured
Code Review Best Practice
trishagee
66
17k
Raft: Consensus for Rubyists
vanstee
137
6.8k
[Rails World 2023 - Day 1 Closing Keynote] - The Magic of Rails
eileencodes
33
2.1k
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
10
1.3k
Practical Orchestrator
shlominoach
186
10k
Adopting Sorbet at Scale
ufuk
74
9.2k
Mobile First: as difficult as doing things right
swwweet
223
9.3k
How to train your dragon (web standard)
notwaldorf
91
5.8k
GitHub's CSS Performance
jonrohan
1030
460k
Agile that works and the tools we love
rasmusluckow
328
21k
Building an army of robots
kneath
302
45k
実際に使うSQLの書き方 徹底解説 / pgcon21j-tutorial
soudai
174
51k
Transcript
Burak Aydın – burakaydin.net.tr
git
Dağıtık Versiyon Kontrol Sistemi (DVCS) Client = Server Çevrimdışı Hızlı
smaller is faster
None
None
Nasıl Yüklüyoruz
Linux: apt-get install git-core ?Mac OS X: brew install git
Windows: msysgit.github.com
init add commit remote push pull clone branch merge checkout
–f gitk .gitignore log status stash reflog blame
git config --global user.name ... git config --global user.email ...
Yeni bir kod deposu git init touch .gitignore echo "/bin"
>> .gitignore echo "/gen" >> .gitignore git add .
Initial commit git commit –m ‘’niçin?’’
remote git remote add origin git@git... git push origin master
git pull origin master git clone git@git...
git blame dosya_ismi git stash --help git diff => ?
git branch özellik git checkout –b özellik git checkout branch_ismi
git merge branch_ismi
git push –f … pull use the force Luke
git log git status git reflog git gitk
Kaynaklar ogit-scm.org ohttp://try.github.com/ ohttp://pcottle.github.com/learnGitBranching/ ohttp://jonas.nitro.dk/git/quick-reference.html
github
San Francisco - 2008 153 çalışan En büyük kod deposu
Kod paylaşımı için en iyi yer?
None
demo
?
None