Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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/<github 계정>/dal-lab/git-sample.git
git remote add upstream https://github.com/dal-lab/git-sample.git
```

2. 원격 저장소와 for 된 저장소가 연결되었는지 확인합니다.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
2. 원격 저장소와 for 된 저장소가 연결되었는지 확인합니다.
2. 원격 저장소와 fork 된 저장소가 연결되었는지 확인합니다.


```bash
git remote -v
```