Skip to content

OsvaldoJ/advanced-fun

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 

Repository files navigation

Welcome to "Advanced" Git

  • Date: January 23, 2017
  • Facilitators: @crichID and @hectorsector
  • Class Chat: Join the chat at https://gitter.im/advanced-fun/Lobby

Session Outline

  • Understanding how commits are made
  • Initializing a local Git repository
    • What is happening "under the hood" when we issue core git commands
    • git log
    • git diff
  • Working with branches
    • Merge strategies
    • Understanding rebase
  • Get out of anything (understanding the git "undo" commands)
    • Git revert
    • Git commit amend
    • Git reset
    • Git reflog
    • Git cherry-pick
    • Git filter-branch
  • Other git features
    • Git bisect
    • Git stash
  • Q&A
    • Git GUIs

Scripts for Adding Files

  • Bash: for d in {1..6}; do touch file$d.md; git add file$d.md; git commit -m "adding file $d"; done
  • PowerShell: for ($d=1; $d -le 6;$d++) { touch file$d.md; git add file$d.md; git commit -m "adding file$d.md";}

A Few Resources

About

A place to play with some more advanced git concepts

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published