Monthly Archives: August 2013

Git quick reference

(Target audience: developers who knows SVN/CVS, so it skips some intro about Git) Download Command-line client http://git-scm.com/downloads (Windows: http://code.google.com/p/msysgit/ ) View command help (options, parameters, … ) : git help command or git command –help (command is one of: clone … Continue reading

Posted in Coding, Linux, Skill | 4 Comments

Kill processes on Win

  On Linux/Unix it’s very easy to find process ID of certain process: ps -ef | grep processName  or ps aux | grep processName then the Process ID is the second column of the output (usually written as variable $PID … Continue reading

Posted in Linux, Skill | Leave a comment