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
61
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
82
Git & GitHub Theory
aecc
0
77
Linux Hour
aecc
2
260
Other Decks in Technology
See All in Technology
韓非子に学ぶAI活用術
tomfook
3
1.1k
20年以上続く PHP 大規模プロダクトを Kubernetes へ ── クラウド基盤刷新プロジェクトの4年間
oogfranz
PRO
0
320
Zephyr(RTOS)でOpenPLCを実装してみた
iotengineer22
0
140
Cursor Subagentsはいいぞ
yug1224
2
110
脳が溶けた話 / Melted Brain
keisuke69
1
1.1k
Phase05_ClaudeCode入門
overflowinc
0
2.4k
LLMに何を任せ、何を任せないか
cap120
10
5.9k
AWS Systems Managerのハイブリッドアクティベーションを使用したガバメントクラウド環境の統合管理
toru_kubota
1
180
The Rise of Browser Automation: AI-Powered Web Interaction in 2026
marcthompson_seo
0
310
RGBに陥らないために -プロダクトの価値を届けるまで-
righttouch
PRO
0
120
Kubernetesの「隠れメモリ消費」によるNode共倒れと、Request適正化という処方箋
g0xu
0
150
来期の評価で変えようと思っていること 〜AI時代に変わること・変わらないこと〜
estie
0
110
Featured
See All Featured
Java REST API Framework Comparison - PWX 2021
mraible
34
9.2k
Mozcon NYC 2025: Stop Losing SEO Traffic
samtorres
0
190
Save Time (by Creating Custom Rails Generators)
garrettdimon
PRO
32
2.6k
Lightning Talk: Beautiful Slides for Beginners
inesmontani
PRO
1
490
How to optimise 3,500 product descriptions for ecommerce in one day using ChatGPT
katarinadahlin
PRO
1
3.5k
DBのスキルで生き残る技術 - AI時代におけるテーブル設計の勘所
soudai
PRO
64
53k
Darren the Foodie - Storyboard
khoart
PRO
3
3k
The Cost Of JavaScript in 2023
addyosmani
55
9.8k
VelocityConf: Rendering Performance Case Studies
addyosmani
333
24k
Practical Orchestrator
shlominoach
191
11k
We Are The Robots
honzajavorek
0
200
Ethics towards AI in product and experience design
skipperchong
2
240
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]