diff --git a/README.md b/README.md index 77df647..a037e8f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,16 @@ # Git Sample -[![works badge](https://cdn.jsdelivr.net/gh/nikku/works-on-my-machine@v0.2.0/badge.svg)](https://github.com/nikku/works-on-my-machine) +fork와 remote를 연습하기 위한 저장소입니다. -This repository is a playground to learn Git. +1. fork 저장소와 origin 저장소를 연결합니다. + +```bash +git remote add origin https://github.com//dal-lab/git-sample.git +git remote add upstream https://github.com/dal-lab/git-sample.git +``` + +2. 원격 저장소와 for 된 저장소가 연결되었는지 확인합니다. + +```bash +git remote -v +```