Check out a remote branch in git If you would like to checkout the branch groups, you can simply say...

Please Visit: http://ift.tt/1ajReyV

Check out a remote branch in git
If you would like to checkout the branch groups, you can simply say this in recent versions of Git:

git fetch origin
git checkout groups
This will automatically track origin/groups from a local branch groups.

http://ift.tt/1K3jhp1


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1K3jg4C
via LifeLong Community

How to display and kill zombie processes kill $(ps -A -ostat,ppid | awk '/[zZ]/{print $2}') ps aux |...

Please Visit: http://ift.tt/1ajReyV

How to display and kill zombie processes
kill $(ps -A -ostat,ppid | awk '/[zZ]/{print $2}')
ps aux | awk '"[Zz]" ~ $8 { printf("%s, PID = %d\n", $8, $2); }'
ps axu | awk '"[Zz] ~ $8 { system(sprintf("kill -HUP %d", $2)); }'
http://ift.tt/1JYlWjM
http://ift.tt/1duqYsx


from Public RSS-Feed of Jeffery yuan. Created with the PIXELMECHANICS 'GPlusRSS-Webtool' at http://gplusrss.com http://ift.tt/1JYlWjN
via LifeLong Community