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
55
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
75
Git & GitHub Theory
aecc
0
65
Linux Hour
aecc
2
230
Other Decks in Technology
See All in Technology
Terraform Stacks入門 #HashiTalks
msato
0
360
Security-JAWS【第35回】勉強会クラウドにおけるマルウェアやコンテンツ改ざんへの対策
4su_para
0
180
CysharpのOSS群から見るModern C#の現在地
neuecc
2
3.5k
CDCL による厳密解法を採用した MILP ソルバー
imai448
3
130
なぜ今 AI Agent なのか _近藤憲児
kenjikondobai
4
1.4k
OS 標準のデザインシステムを超えて - より柔軟な Flutter テーマ管理 | FlutterKaigi 2024
ronnnnn
0
200
TanStack Routerに移行するのかい しないのかい、どっちなんだい! / Are you going to migrate to TanStack Router or not? Which one is it?
kaminashi
0
600
テストコード品質を高めるためにMutation Testingライブラリ・Strykerを実戦導入してみた話
ysknsid25
7
2.7k
開発生産性を上げながらビジネスも30倍成長させてきたチームの姿
kamina_zzz
2
1.7k
データプロダクトの定義からはじめる、データコントラクト駆動なデータ基盤
chanyou0311
2
330
The Role of Developer Relations in AI Product Success.
giftojabu1
0
130
『Firebase Dynamic Links終了に備える』 FlutterアプリでのAdjust導入とDeeplink最適化
techiro
0
130
Featured
See All Featured
Building Your Own Lightsaber
phodgson
103
6.1k
Designing Experiences People Love
moore
138
23k
Building Better People: How to give real-time feedback that sticks.
wjessup
364
19k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
356
29k
Fantastic passwords and where to find them - at NoRuKo
philnash
50
2.9k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
191
16k
Stop Working from a Prison Cell
hatefulcrawdad
267
20k
Why You Should Never Use an ORM
jnunemaker
PRO
54
9.1k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
506
140k
Intergalactic Javascript Robots from Outer Space
tanoku
269
27k
Embracing the Ebb and Flow
colly
84
4.5k
Bootstrapping a Software Product
garrettdimon
PRO
305
110k
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]