git-remote

REGISTER REMOTE REPOSITORY

SSH key

이미지

Remote details

git@github.com:xxxxx/git_toturial.git

이미지

PUSH

git remote
git push origin master
vi index.html
git add index.html
git commit index.html

and

vi index.html
git add index.html
git commit index.html

이미지

CLONE

git clone git@github.com:xxxxx/git_toturial.git

이미지

PUSH & PULL

이미지

In toturial

git checkout master
vi index.html
git add index.html
git commit index.html
git push origin master

이미지

In another

vi index.html
git add index.html
git commit index.html
git push origin master
이미지

UNFINISHED STORY

stash, tag, rebase, …