/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

  1. # Git Workshop
  2. ## Outline and Guide
  3. https://github.com/matthewmccullough/git-workshop
  4. - Basics
  5. - config
  6. - init
  7. - clone
  8. - add
  9. - commit
  10. - SSH Keygen
  11. - Using Matthew's repo
  12. - Add students to repo
  13. - Box name: Zeus
  14. - Internals
  15. - The .git folder
  16. - hashes
  17. - HEAD
  18. - refs
  19. - Every day commands, tools
  20. - status
  21. - log
  22. - diff
  23. - rm
  24. - mv
  25. - .gitignore
  26. - commit -a
  27. - stash
  28. - Fixing Mistakes
  29. - amend
  30. - reset
  31. - revert
  32. - checkout -- SomeFile.txt
  33. - clean
  34. - reflog
  35. - Agility
  36. - branch
  37. - checkout
  38. - checkout -b
  39. - push
  40. - pull
  41. - Deeper
  42. - log
  43. - show
  44. - showbranch
  45. - shortlog
  46. - log --pretty=oneline
  47. - log --graph
  48. - Tags
  49. - Lightweight
  50. - Heavyweight
  51. - Transport
  52. - bundle
  53. - fetch
  54. - SVN
  55. - svn clone
  56. - svn rebase
  57. - Merging
  58. - merge
  59. - octopus merge
  60. - rebase
  61. - Bisect
  62. - start
  63. - good
  64. - bad
  65. - run
  66. - Aliases
  67. - shorthand for commands
  68. - with native commands
  69. - Hooks
  70. - examine samples