이글루스 로그인


Diff와 Patch

 
오픈 소스에 기여하려면 자주 써야할 명령중에 하나인듯 싶다.

So let's find the implementation differences first:

$ cd ~/project2/src/geekos
$ diff -u -r . ~/project2-solution/src/geekos > ~/diff.patch

And then integrate them into project 3 base:

$ cd ~project3/src/geekos
$ patch -p0 < ~/diff.patch
$ rm *orig


by 서광열 | 2005/10/06 02:31 | 프로그래밍 | 트랙백 | 덧글(2)

트랙백 주소 : http://skyul.egloos.com/tb/1809000
☞ 내 이글루에 이 글과 관련된 글 쓰기 (트랙백 보내기) [도움말]
Commented by Robert at 2007/04/06 01:23
nice
Commented by Naomi at 2007/04/06 01:50
hello

:         :

:

비공개 덧글


◀ 이전 페이지          다음 페이지 ▶