$ git remote add telepathy git@github.com:spring-sprout/telepathy.git
$ git remote
origin
telepathy
$ git pull telepathy master
remote: Counting objects: 69, done.
remote: Compressing objects: 100% (37/37), done.
remote: Total 61 (delta 14), reused 55 (delta 8)
Unpacking objects: 100% (61/61), done.
From github.com:spring-sprout/telepathy
* branch master -> FETCH_HEAD
Updating f29593b..15fc160
Fast-forward
.gitignore | 4 ++-
src/chapter3/Sort.java | 17 +++++++++
src/chapter3/bubblesort/BubbleSort.java | 8 ++++
src/chapter3/bubblesort/ILhyunBubbleSort.java | 32 ++++++++++++++++
.../selectionsort/ILhyunSelectionSort.java | 39 ++++++++++++++++++++
.../selectionsort/JungWooSelectionSort.java | 24 ++++++++++++
test/chapter3/bubblesort/ILhyunBubbleSortTest.java | 25 +++++++++++++
.../selectionsort/ILhyunSelectionSortTest.java | 25 +++++++++++++
.../selectionsort/JungWooSelectionSortTest.java | 26 +++++++++++++
9 files changed, 199 insertions(+), 1 deletions(-)
create mode 100644 src/chapter3/Sort.java
create mode 100644 src/chapter3/bubblesort/BubbleSort.java
create mode 100644 src/chapter3/bubblesort/ILhyunBubbleSort.java
create mode 100644 src/chapter3/selectionsort/ILhyunSelectionSort.java
create mode 100644 src/chapter3/selectionsort/JungWooSelectionSort.java
create mode 100644 test/chapter3/bubblesort/ILhyunBubbleSortTest.java
create mode 100644 test/chapter3/selectionsort/ILhyunSelectionSortTest.java
create mode 100644 test/chapter3/selectionsort/JungWooSelectionSortTest.java
$

끝~