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 Basic Commands
Search
AECC UPRB
September 14, 2014
Technology
0
59
Git & GitHub Basic Commands
This presentation contains basic commands on Git to get started.
AECC UPRB
September 14, 2014
Tweet
Share
More Decks by AECC UPRB
See All by AECC UPRB
JavaScript Basics
aecc
0
77
Git & GitHub Theory
aecc
0
72
Linux Hour
aecc
2
250
Other Decks in Technology
See All in Technology
EncryptedSharedPreferences が deprecated になっちゃった!どうしよう! / Oh no! EncryptedSharedPreferences has been deprecated! What should I do?
yanzm
0
520
2025/09/16 仕様駆動開発とAI-DLCが導くAI駆動開発の新フェーズ
masahiro_okamura
0
160
dbt開発 with Claude Codeのためのガードレール設計
10xinc
2
1.4k
開発者を支える Internal Developer Portal のイマとコレカラ / To-day and To-morrow of Internal Developer Portals: Supporting Developers
aoto
PRO
1
480
スマートファクトリーの第一歩 〜AWSマネージドサービスで 実現する予知保全と生成AI活用まで
ganota
2
330
Android Audio: Beyond Winning On It
atsushieno
0
5.6k
測りにくい成果を測る — BtoB SaaSにおける効果検証への挑戦 / Shirokane Kougyou vol 20
sansan_randd
2
150
AWSを利用する上で知っておきたい名前解決のはなし(10分版)
nagisa53
10
3.3k
人工衛星のファームウェアをRustで書く理由
koba789
15
8.3k
未経験者・初心者に贈る!40分でわかるAndroidアプリ開発の今と大事なポイント
operando
6
830
Bedrock で検索エージェントを再現しようとした話
ny7760
2
150
roppongirb_20250911
igaiga
1
260
Featured
See All Featured
Typedesign – Prime Four
hannesfritz
42
2.8k
Building Adaptive Systems
keathley
43
2.7k
Why Our Code Smells
bkeepers
PRO
339
57k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
131
19k
Why You Should Never Use an ORM
jnunemaker
PRO
59
9.5k
Faster Mobile Websites
deanohume
309
31k
Imperfection Machines: The Place of Print at Facebook
scottboms
268
13k
Java REST API Framework Comparison - PWX 2021
mraible
33
8.8k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
127
53k
Visualization
eitanlees
148
16k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
229
22k
Documentation Writing (for coders)
carmenintech
74
5k
Transcript
B A S I C C O M M A
N D S
None
A E C C - U P R B .
H E R O K U A P P. C O M
A S O C I A C I Ó N
D E E S T U D I A N T E S D E C I E N C I A S D E C Ó M P U T O S U P R B
G I T H U B . C O M
/ A E C C - U P R B
C R E AT I N G R E P
O S I T O R I E S
$ git init [project-name]
$ git clone [url]
M A K E C H A N G E
S
$ git status
$ git diff
$ git add [file] $ git add .
$ git commit -m “[message]”
G R O U P C H A N G
E S
$ git branch
$ git branch [branch-name]
$ git checkout [branch-name]
$ git branch -d [branch-name]
R E M O V E F I L E
S
git rm [file]
S Y N C H R O N I S
E C H A N G E S
$ git pull
$ git push [alias] [branch]
$ git merge [bookmark]/[branch]