- Some philosophical thoughts
- Configuration
git config --global user.name "Name"
git config --global user.email "[email protected]"
git config --global color.ui auto
- Creating a Repo
git init newproject
- Add files
This file contains 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
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $* | |
sleep 1 | |
done |
This file contains 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
#!/bin/bash | |
while : | |
do | |
clear | |
git --no-pager log --graph --oneline --decorate --all $* | |
sleep 1 | |
done |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
(ns cow.model | |
(:require [cow.math :as math])) | |
(def cow-count 25) | |
(def max-starting-velocity 0.01) | |
(def cow-id (atom 0)) | |
(defn random-cow [] | |
(let [random-velocity (fn [] (- max-starting-velocity (rand (* 2 max-starting-velocity)))) |
- Git and initial setup
- Git configuration
- Your first repository
- Git's three stages
- Adding and committing
- Overview of Git's Architecture
- Reviewing and diff-ing content changes
- Network protocols, proxies, and Git's speed
- Branching, Tagging, and Stashing
- Merging, Rebasing, and managing conflicts
OlderNewer