Skip to content

Instantly share code, notes, and snippets.

View Kerry350's full-sized avatar

Kerry Gallagher Kerry350

View GitHub Profile

Keybase proof

I hereby claim:

  • I am Kerry350 on github.
  • I am kerry350 (https://keybase.io/kerry350) on keybase.
  • I have a public key whose fingerprint is 06C7 C029 64CA 8A4B 7368 2BBD 3B03 37EA F24A 25BC

To claim this, I am signing this object:

@Kerry350
Kerry350 / UNIX commands.mkd
Last active December 17, 2015 03:09
*nix commands because, in all honesty, I forget a lot of these...
  • Find out what processes are running

ps aux

  • Kill one of those bad boys ^

kill -9 <PID>

  • Find out what's using a certain port
@Kerry350
Kerry350 / git-commands.mkd
Last active April 23, 2020 04:23
Common Git commands

A little lookup for commands I use frequently

  • Commit all edited files and add a message

git commit -a -m "My commit"

  • Add all new files

git add .