Blog

Author Archive


Git History and Diffs
Posted on August 30, 2020 in Git by Matt Jennings

In your terminal, just hit ‘enter’ for a new line:

$ git commit -m “1. what i changed
> 2. blank line
> …

Read more


Git References, Commits, and Branches
Posted on August 30, 2020 in Git by Matt Jennings

They are pointers to commits.

Tags and Annotated Tags
Branches
HEAD

HEAD is how git knows what branch you’re currently on, and what the next …

Read more


Git Cherry Picking
Posted on August 28, 2020 in Git by Matt Jennings

Cherry picking in Git means to choose a commit from one branch and apply it onto another.

I have two branches, …

Read more


Git Areas and Stashing
Posted on August 28, 2020 in Git by Matt Jennings

The information below is from Git Foundations chapter of Git In-depth.

Work Area (Work Tree)
Staging Area (Cache or Index)
Repository

Called untracked files.

Files …

Read more


Git Foundations
Posted on August 28, 2020 in Git by Matt Jennings

The information below is from Git Foundations chapter of Git In-depth.

git is like a key value store.
The Value = date
The Key …

Read more