Created
May 10, 2012 12:01
-
-
Save lukaskubanek/2652619 to your computer and use it in GitHub Desktop.
Resources for my lightning talk "Git Flow - A Successful Branching Model"
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 | |
# Git Flow - A Successful Branching Model | |
# Resources for my lightning talk at WDCM Dresden on 10.05.2012 (http://wdcmdresden.com/14-lightning-talks/) | |
# Created by Lukas Kubanek (@kubanek_l) | |
# What is Git? | |
open "http://git-scm.com/" # New official Git website | |
open "http://wdcmdresden.com/8-git" # Git meeting where I held a talk about Git | |
open "http://try.github.com" # Git tutorial | |
open "http://stackoverflow.com/questions/871/why-is-git-better-than-subversion" # Why is Git better than SVN? | |
# What is a branch? | |
open "http://twitter.com/#!/__edorian/status/169191651053551616/photo/1" # First impressions with Git | |
open "http://git-scm.com/images/about/branches.png" # Branches | |
# What is Git Flow? | |
open "http://nvie.com/posts/a-successful-git-branching-model/" # (1) A successful branching model | |
open "http://github.com/nvie/gitflow" # (2) Git Flow GitHub project | |
open "http://github.com/robbyrussell/oh-my-zsh/blob/master/plugins/git-flow/git-flow.plugin.zsh" # Oh My Zsh plugin | |
# How this works with GitHub? | |
open "http://help.github.com/send-pull-requests/" # Two approaches | |
# Are there any problems? | |
open "http://scottchacon.com/2011/08/31/github-flow.html" # Scott Chacon about Git Flow and the GitHub workflow | |
# Some other resources | |
open "http://bit.ly/uubrRc" # Git Flow screencast | |
open "http://vimeo.com/37408017" # Another Git Flow screencast | |
open "http://www.google.com/search?q=git+flow" # Look yourself for other resources :-) | |
# Thanks! | |
open "http://github.com/lukaskubanek" # GitHub | |
open "http://twitter.com/kubanek_l" # Twitter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment