Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
git config --global user.name "<First Last>"
git config --global user.email <[email protected]>
git config --global core.editor <vim>
git config --global color.ui true
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
# Display a git repository's commit graph with live updates. | |
# | |
# I learned about Ben Hoskings' https://github.com/benhoskings/omglog | |
# (`gem install omglog`) project while watching PeepCode's "Advanced Git" | |
# course (now at | |
# http://pluralsight.com/training/Courses/TableOfContents/advanced-git). | |
# `omglog` shows the commit graph with live updating as commits are made, | |
# merged, and branched. It is particularly helpful when run on a secondary |