More on this book
Community
Kindle Notes & Highlights
by
Eric Matthes
Started reading
November 1, 2018
git checkout be017b
git checkout -b new_branch_name
detached HEAD state
HEAD is the current state of the project;
detached because we’ve left a named branch (maste...
This highlight has been truncated due to consecutive passage length restrictions.
can reset the project to a previous commit.
git_practice$ git log --pretty=oneline
git_practice$ git reset --hard be017b HEAD is now at be017b7 Started project.
get rid of the project’s history by deleting the .git directory.

