/outlines/Git Foundations Workshop Basic Objectives and Outline.markdown
http://github.com/matthewmccullough/git-workshop · Markdown · 73 lines · 70 code · 3 blank · 0 comment · 0 complexity · 40aae99f468945567667df0bd3448013 MD5 · raw file
- # Git Workshop
- ## Outline and Guide
- https://github.com/matthewmccullough/git-workshop
- - Basics
- - config
- - init
- - clone
- - add
- - commit
- - SSH Keygen
- - Using Matthew's repo
- - Add students to repo
- - Box name: Zeus
- - Internals
- - The .git folder
- - hashes
- - HEAD
- - refs
- - Every day commands, tools
- - status
- - log
- - diff
- - rm
- - mv
- - .gitignore
- - commit -a
- - stash
- - Fixing Mistakes
- - amend
- - reset
- - revert
- - checkout -- SomeFile.txt
- - clean
- - reflog
- - Agility
- - branch
- - checkout
- - checkout -b
- - push
- - pull
- - Deeper
- - log
- - show
- - showbranch
- - shortlog
- - log --pretty=oneline
- - log --graph
- - Tags
- - Lightweight
- - Heavyweight
- - Transport
- - bundle
- - fetch
- - SVN
- - svn clone
- - svn rebase
- - Merging
- - merge
- - octopus merge
- - rebase
- - Bisect
- - start
- - good
- - bad
- - run
- - Aliases
- - shorthand for commands
- - with native commands
- - Hooks
- - examine samples