확인

    git에서 merge한 후에 merge이전의 소스와 비교하기

    git에서 merge한 후에 merge이전의 소스와 비교하기 git을 사용하다 보면 git merge을 통해서 fetch받은 소스를 업데이트 한 후에, 어떤 부분이 변경되었는지궁금할 때가 있다. 그럴때 쓰는 명령어는 아래와 같다. git diff HEAD^ [파일] 아래 명령어를 사용하면 어떤 부분이 변경되었는지 확인이 된다. git에서 merge한 후에 merge이전의 소스와 비교하기 끝.

    [ubuntu] bit(비트), 버전 확인 하는 방법

    1. 키워드 : 비트,bit,버전,확인,version,command,추천, 2. ① $ uname -a 32-bit Ubuntu: Linux discworld 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:50 UTC 2011 i686 i686 i386GNU/Linux(i~ i~는 32bit) 64-bit Ubuntu:Linux discworld 2.6.38-8-generic #42-Ubuntu SMP Mon Apr 11 03:31:50 UTC 2011 x86_64 x86_64x86_64 GNU/Linux(x~ x~는 64bit) ② $file /sbin/init 32-bit Ubuntu:/sbin/init: ELF 32-bit LSB shared object, ..

    [c언어] thread의 상태를 확인해보자

    1.thread를 관리하는데 thread의 id인 pid를 통해 관리할 수 있지 않을까라는 발상에서 시작. 2.googling하니깐 나온다. 'c check pid status' (https://www.google.com/webhp?hl=en#hl=en&newwindow=1&q=c%20check%20pid%20status&safe=off) 순조로운데? 3.여기에 다 나와있다. 본인의 pid나 parent의 pid를 확인 할 수 있다. Kann es auch und macht es nicht C++:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31#include #include #include #includ..