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
70
Linux Hour
aecc
2
250
Other Decks in Technology
See All in Technology
(非公式) AWS Summit Japan と 海浜幕張 の歩き方 2025年版
coosuke
PRO
1
340
25分で解説する「最小権限の原則」を実現するための AWS「ポリシー」大全
opelab
9
2.2k
変化する開発、進化する体系時代に適応するソフトウェアエンジニアの知識と考え方(JaSST'25 Kansai)
mizunori
0
140
監視のこれまでとこれから/sakura monitoring seminar 2025
fujiwara3
10
2.9k
Snowflake Summit 2025全体振り返り / Snowflake Summit 2025 Overall Review
mtpooh
2
210
あなたの声を届けよう! 女性エンジニア登壇の意義とアウトプット実践ガイド #wttjp / Call for Your Voice
kondoyuko
1
150
rubygem開発で鍛える設計力
joker1007
1
120
Microsoft Build 2025 技術/製品動向 for Microsoft Startup Tech Community
torumakabe
1
210
Welcome to the LLM Club
koic
0
140
Wasm元年
askua
0
100
Azure AI Foundryでマルチエージェントワークフロー
seosoft
0
150
CI/CDとタスク共有で加速するVibe Coding
tnbe21
0
230
Featured
See All Featured
Art, The Web, and Tiny UX
lynnandtonic
299
21k
Learning to Love Humans: Emotional Interface Design
aarron
273
40k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
2.8k
The Cult of Friendly URLs
andyhume
79
6.4k
Side Projects
sachag
455
42k
Imperfection Machines: The Place of Print at Facebook
scottboms
267
13k
XXLCSS - How to scale CSS and keep your sanity
sugarenia
248
1.3M
Writing Fast Ruby
sferik
628
61k
Principles of Awesome APIs and How to Build Them.
keavy
126
17k
No one is an island. Learnings from fostering a developers community.
thoeni
21
3.3k
Scaling GitHub
holman
459
140k
Faster Mobile Websites
deanohume
307
31k
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]