Slide 1

Slide 1 text

BE AWESOME WITH GIT

Slide 2

Slide 2 text

HI, I'M AFNIZAR A Designer. Previously, Limakilo, Astronaut and Fikri Studio

Slide 3

Slide 3 text

What Is Git?

Slide 4

Slide 4 text

No content

Slide 5

Slide 5 text

History

Slide 6

Slide 6 text

No content

Slide 7

Slide 7 text

Installation Install with git-scm https://git-scm.com/

Slide 8

Slide 8 text

Type Of Git User

Slide 9

Slide 9 text

Terminal For The King

Slide 10

Slide 10 text

GUI For The Weak

Slide 11

Slide 11 text

Initialize New Repository

Slide 12

Slide 12 text

1. Make the folder!

Slide 13

Slide 13 text

2. Open up terminal, and CD to the folder

Slide 14

Slide 14 text

3. Type git init

Slide 15

Slide 15 text

4. Add some files

Slide 16

Slide 16 text

5. and so on...

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

Some Term You Should Know

Slide 19

Slide 19 text

Forking Forking is to take the source code and develop an entirely new program

Slide 20

Slide 20 text

No content

Slide 21

Slide 21 text

No content

Slide 22

Slide 22 text

Cloning Clone a repository into a new directory

Slide 23

Slide 23 text

No content

Slide 24

Slide 24 text

Let's Try!

Slide 25

Slide 25 text

1. Fork a repository

Slide 26

Slide 26 text

2. Clone the repository

Slide 27

Slide 27 text

No content

Slide 28

Slide 28 text

After that Git Workflow

Slide 29

Slide 29 text

No content

Slide 30

Slide 30 text

Pull Requests Pull requests let you tell others about changes you've pushed to a repository

Slide 31

Slide 31 text

Let's Try!

Slide 32

Slide 32 text

1. Add a file on repository that we clone

Slide 33

Slide 33 text

2. Open up your terminal

Slide 34

Slide 34 text

3. Type git add .

Slide 35

Slide 35 text

4. Type git commit -m "Add something"

Slide 36

Slide 36 text

5. Type git push origin master

Slide 37

Slide 37 text

6. Do the pull request via Github

Slide 38

Slide 38 text

Commit Etiquette

Slide 39

Slide 39 text

No content

Slide 40

Slide 40 text

No content

Slide 41

Slide 41 text

No content

Slide 42

Slide 42 text

GOOD COMMIT WILL Speed up the reviewing process. Help write a good release note. Avoid confusion. Quality repository.

Slide 43

Slide 43 text

Branch Branch is essentially an independent line of development.

Slide 44

Slide 44 text

No content

Slide 45

Slide 45 text

THANK YOU