Added inline to-do items

This commit is contained in:
Kenneth John Odle 2025-01-22 15:56:36 -05:00
parent 02d40255da
commit d37d470c95

View File

@ -333,6 +333,10 @@ Now that you've added your files, they are considered to be \textit{staged}, whi
If you're happy with the files you've staged, we can now commit them by using \texttt{git commit -m "<commit message>"}. Note that you have to add a commit message. This can be anything you like, but it helps to make it something that will be useful down the road like ``updated chapter three''. You'll get some miscellaneous messages about what Git is doing and then it is done. You've created your first commit, and all of your staged files are now committed.
\section{How to View Commits}
\todo[inline]{Add information about viewing commits; include shortcut for --rev-list}
\chapter{Remote Repositories}
@ -587,6 +591,10 @@ Lines 2-8 tell us about ``doc\_a.txt'' and lines 9-15 tells us about ``doc\_b.tx
Notice that line 12 is telling us that the ``a'' version of ``\texttt{doc\_b.txt}'' (that is, the version that exists in the main branch) is ``\texttt{/dev/null}'' which is Git's way of telling us that this file does not exist at all in the main branch. In fact, line 14 shows us \texttt{-0,0} which means that Git is showing us zero lines starting at line zero from the ``a'' version of this file.
\section{Merging and Deleting Branches}
\todo[inline]{Write notes, then add about merging and deleting}
\section{Other Notes about Branching}
\todo[inline]{Add information about directory contents in the different branches}