WEB DEVELOPMENT

FRONT-END

REPOSITORY 101

INSTALL

CONFIGURE

> git config --global user.name "Mona Lisa"

> git config --global user.email "email@example.com"

> ssh

INITIALIZE

> git init

> git remote add <name> <address>

> git clone <address>

SAVE

> git add <filename>

> git add *

> git commit -m "<message>"

> git commit -am "<message>"

UPDATE

> git pull

> git push

EXPAND (BRANCH)

> git checkout -b <branch_name>

> git checkout <branch_name>

> git branch --set-upstream <branch_name> origin/<branch_name>

> git checkout -d <branch_name>

> git checkout -d origin/<branch_name>

> git fetch

> git checkout <branch_name>

MERGE

> git merge <branch>

REVIEW

RELEASE

> git tag <version>

Q&A

THANK YOU!

WEBDEV-FE-L3 - REPOSITORY 101

By Alex Albu

WEBDEV-FE-L3 - REPOSITORY 101

  • 429