My “Learning” Workflow
As I wrote about before, I have developed an interesting method of learning from experts, which can be summarized as follows:
- Fork their repo on GitHub
- Clone the repo locally and “detach the
HEAD
” to the “inital commmit” - Now repeat the following
while (curious)
- Open the working tree in an editor/IDE
- If there’s something runnable, run it
- Understand everything going on in the working tree
- Take hints from the commit message
- Advance
HEAD
one commit - View the diff from the previous commit
SourceTree cannot handle this workload
I have always used Atlassian’s Git GUI called SourceTree for all of my Git usage because it is a great application, but the fact is, it will not work for the workflow above. SourceTree has to rebuild the list of commits all the time (startingfrom the most recent), and when there are thousands of commits, that can take about a minute. But since I’m always operating at the beginning of the reverse end of the commit log, using SourceTree is untenable. For whatever reason they decided it was a better idea not to keep all these commits in memory after they are loaded the first time. I’m not saying that was a bad decision, because my workflow here may be atypical.
Git is a DAG pointing back in time
From what I understand—which is not (yet) a whole lot—Git is a DAG of “snapshots” of the state of your project. Each snapshot points to its parents.
In a typical case, you’ll load a snapshot, edit your working directory, add the changes into the staging area, and commit a new snapshot which equals the previous snapshot, plus the staged changes. Now your new commit has one parent: the previous snapshot.
A merge commit would have two parents: the previous commit on the branch being committed to, and the previous commit on the branch being merged- in.
The Learning workflow flows the wrong way
The Learning worflow would require pointers to the next commit, not just back-pointers. So it doesn’t quite fit the Git mold, and we require a workaround.
That’s where StackOverflow saves the day. Here someone modified a StackOverflow answer by someone else to a related question, and produced wrappers that help you traverse back and forth between commits. I reproduce an explicated and slightly simplified version below which may be added to your shell config file.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|
With that knowledge in tow, I also made a little command to jump to the i‘th
commit on master. If you’re trying to jump to the i‘th commit on the current
branch, get the current branch using the BRANCH=...
code above, and pass it
to rev-list
.
1 2 3 4 5 6 |
|
Wrappin it up
So yeah, now the workflow is simpler to use and it was made possible by gaining a better understanding of how Git works.