adlfkjfadslkjfads

Git Tip of the Day - Committer vs Author

Posted on Fri 06 August 2021 in Posts • Tagged with git, gitTipOfTheDay

There's a distinction in git between committer and author. Lets learn about that.


Continue reading

VS Code Tip Of The Day - Selectively Adding Files To A Git Commit

Posted on Sat 03 April 2021 in Posts • Tagged with git, vscode

Recently I figured out a way to selectively add files to a Git commit.


Continue reading

Git Image Diff with iTerm2

Posted on Sun 14 February 2021 in Posts • Tagged with iterm, iterm2, git, terminal, shell

iTerm has a imgcat function. Lets use it with Git for image diffing


Continue reading

Fixing a Slow Bash Prompt

Posted on Mon 01 February 2021 in Posts • Tagged with bash, git, osx, homebrew

My bash prompt seemed to be slow. Here's how I fixed it


Continue reading

Shell Tip Of the Day - Interactively Deleting Docker Images

Posted on Fri 08 June 2018 in Posts • Tagged with bash, shell, shellTipOfTheDay, git

Shell Tip Of the Day - Interactively deleting Docker images with Bash's select statement


Continue reading

Shell Tip Of the Day - Selecting untracked files

Posted on Fri 01 June 2018 in Posts • Tagged with bash, shell, shellTipOfTheDay, git

Shell Tip Of the Day - Selecting untracked files


Continue reading

Git bisect And Nose -- Or how to find out who to blame for breaking the build.

Posted on Fri 03 August 2012 in Posts • Tagged with git, nose, python, testing

How did I not ever discover git bisect before today? Git bisect allows you to identify a particular commit which breaks a build, even after development has continued past that commit. So for example, say you:

  • Commit some code which (unknowing to you) happens to break the build
  • You then …

Continue reading