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
66
Linux Hour
aecc
2
230
Other Decks in Technology
See All in Technology
インフラをつくるとはどういうことなのか、 あるいはPlatform Engineeringについて
nwiizo
5
2.1k
組織貢献をするフリーランスエンジニアという生き方
n_takehata
1
1k
現場で役立つAPIデザイン
nagix
29
10k
室長と気ままに学ぶマイクロソフトのビジネスアプリケーションとビジネスプロセス
ryoheig0405
0
320
5分で紹介する生成AIエージェントとAmazon Bedrock Agents / 5-minutes introduction to generative AI agents and Amazon Bedrock Agents
hideakiaoyagi
0
220
エンジニアのためのドキュメント力基礎講座〜構造化思考から始めよう〜(2025/02/15jbug広島#15発表資料)
yasuoyasuo
15
5.5k
第13回 Data-Centric AI勉強会, 画像認識におけるData-centric AI
ksaito_osx
0
360
Bounded Context: Problem or Solution?
ewolff
1
210
Building Products in the LLM Era
ymatsuwitter
10
4.4k
CZII - CryoET Object Identification 参加振り返り・解法共有
tattaka
0
240
家電アプリ共通PF "Linova" のAPI利用とPostman活用事例ご紹介
yukiogawa
0
130
2.5Dモデルのすべて
yu4u
2
610
Featured
See All Featured
A designer walks into a library…
pauljervisheath
205
24k
Easily Structure & Communicate Ideas using Wireframe
afnizarnur
193
16k
I Don’t Have Time: Getting Over the Fear to Launch Your Podcast
jcasabona
31
2.1k
Java REST API Framework Comparison - PWX 2021
mraible
28
8.4k
Navigating Team Friction
lara
183
15k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
8
270
Optimizing for Happiness
mojombo
376
70k
Let's Do A Bunch of Simple Stuff to Make Websites Faster
chriscoyier
507
140k
Rebuilding a faster, lazier Slack
samanthasiow
79
8.8k
Being A Developer After 40
akosma
89
590k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
114
50k
Agile that works and the tools we love
rasmusluckow
328
21k
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]