Slide 1

Slide 1 text

Getting Started with GIT loading...

Slide 2

Slide 2 text

What is GIT? still loading...

Slide 3

Slide 3 text

be patient, still loading... A little Bit of Theory...

Slide 4

Slide 4 text

Repositories LOCAL Repository REMOTE Repository

Slide 5

Slide 5 text

Branches Default branch name is master Create or copy unlimited branches Create new branch = Copy master branch Merge some branch to master

Slide 6

Slide 6 text

Initialize GIT Command: git init ( creates .git folder in root directory )

Slide 7

Slide 7 text

Adding Files Command: git add filename.txt git add .

Slide 8

Slide 8 text

Click “YES” almost always

Slide 9

Slide 9 text

Ignoring Files - Create .gitignore file on ROOT directory - Add files/directories line by line Example: example.html images/* .idea/* ( Specific for PHPStorm Editor )

Slide 10

Slide 10 text

Check Status Command: git status

Slide 11

Slide 11 text

Commit Command: git commit -m “Message of Commit”

Slide 12

Slide 12 text

Pull & Push Command: git push -u origin master git pull Pull - Download from GIT Server Push - Upload to GIT Server

Slide 13

Slide 13 text

How to Install? Windows - http://msysgit.github.io/ OSX ( Requires Xcode ) - https://code.google.com/p/git-osx-installer/ Linux - Install Windows or Buy Mac

Slide 14

Slide 14 text

Bitbucket Plugin for PHPStorm

Slide 15

Slide 15 text

No content

Slide 16

Slide 16 text

No content

Slide 17

Slide 17 text

No content

Slide 18

Slide 18 text

Using GIT With PHPStorm

Slide 19

Slide 19 text

Using GIT With PHPStorm

Slide 20

Slide 20 text

No content

Slide 21

Slide 21 text

No content

Slide 22

Slide 22 text

No content

Slide 23

Slide 23 text

No content

Slide 24

Slide 24 text

No content

Slide 25

Slide 25 text

No content

Slide 26

Slide 26 text

No content

Slide 27

Slide 27 text

No content

Slide 28

Slide 28 text

No content

Slide 29

Slide 29 text

No content

Slide 30

Slide 30 text

SourceTree ( GIT UI Application )

Slide 31

Slide 31 text

Resources GIT Essentials ( Premium Video Course ) - https://tutsplus.com/course/git-essentials/ GIT Cheat Sheet ( PDF/PNG ) - http://git-tower.com/blog/git-cheat-sheet-detail/ Sourcetree App - http://www.sourcetreeapp.com/

Slide 32

Slide 32 text

Resources How to setup Visual Studio with BitBucket using Git Extensions - http://goo.gl/pIQtv1 How to Configure BitBucket Git Repository in you Eclipse? - http://goo.gl/Pp5uYE

Slide 33

Slide 33 text

Thank you all!