Codelab / Chapter 04

Version Control

[Back to Codelab index]

Rocky!

Lesson

Git for Humanists

Git workflow by Molly Nemerever: https://dev.to/mollynem/git-github--workflow-fundamentals-5496

  1. Review Codelab to this point
  2. How to collaborate digitally?
  3. Version Control Systems
  4. Git and Github

Setup

There’s a bit of setup for git that I forgot to have y’all do. First, we need to set up name and email in Git. You don’t have to use your real identity, but if it might be useful to have people be able to contact you about your change. Github has some strategies for maintaining some privacy for this step.

git config --global user.email [email protected]
git config --global user.name 'Public Name'

Then, we’ll want to set the default text editor if you end up using git through the command line. Vim is the default and it’s another thing to learn if you don’t already know how to use it, so I would suggest nano as an easier to use option:

git config --global core.editor "nano"

New Terms


Homework

Do:

  1. Add an icebreaker question (or questions) to the icebreaker git practice document and check back on it every few days to answer all the previous, unanswered questions.