2017/03

    git diff Tip

    git 과 patch 툴 사용 팁이다. git diff --no-prefix > patchfile # 패치파일 생성 cd path/to/top # 패치하고자 하는 소스 위치 patch -p0 patchfile # 패치파일 생성 cd path/to/top # 패치하고자 하는 소스 위치 patch -p1 < patchfile # 패치 적용 출처: http://jang574.tistory.com/entry/git-diff-한-것을-patch하기 [오모씨의 노트]

    C# Singleton Pattern

    http://csharpindepth.com/Articles/General/Singleton.aspx