GithubHelp home page GithubHelp logo

mactech2016's Introduction

The GitHub Flow: An Interpretive Dance

Using GitHub is easy, but the core concepts of version control and workflow can be very difficult to understand. In this session, we’ll use our own bodies to learn the basics of cloning, branching, and merging. Audience participation required! Suitable for all levels -- anyone who wants to learn GitHub or who ever needs to teach the flow to someone else.

So why are we here?

It’s an open secret that IT is a lot of Googling and clicking around on things, and of course turning it off and on again.

But when you get bored of clicking and want to automate things, or you start working on a team and need train them in “how we do things here,” you learn very quickly that you need a documented process, and that you need a process for iterating on that process.

The GitHub Flow

Clone, branch, add, commit, push, pull request, review, deploy, and merge in a series of movements. Audience participation required.

      (o_•)   (•_•)
      <)  )> -( -(      clone
       /  \   /  \

      (o_•)  (•_•)
      <)  )> <)  )╯     branch
       /  \   /  \

      * jazz fingers *  add

      * closed fist *   commit

      * high five *     push

      (o_•)  (•_•)
      <)  )╯ <)  )╯
       /  \   /  \

(•_^)  (o_•)  (•_•)
<)  )> <)  )╯ <)  )╯    request a ...
/  \   /  \   /  \

      * high five *     pull

(•_^)  (o_•)  (•_•)
<)  )╯ <)  )╯ <)  )╯
/  \   /  \   /  \

      * thumbs up *     review

(•_^)  (o_•)/ (•_•)
<)  )╯ <)  )  <)  )╯    deploy
/  \   /  \   /  \

(•_^)  (o_•)  (•_•)
<)  )╯ <) V)  <)  )╯    merge
/  \   /  \   /  \

Hands on exercise

Fork this repo!

fork

Click the Fork button in the upper right. If you're a member of any orgs, make sure to choose your own account.

You'll see the forked repo appear with your own name in the upper left.

Clone your fork locally!

clone

Click the Clone or download button and copy the URL for your repo.

Then hop into your terminal, get into your working directory, and do:

git clone [paste the URL you copied]
cd mactech2016

cli-clone

HTTPS or SSH?

If you're using HTTPS and don't have your credential cached, you'll be prompted for your username and password when you push. If you have 2FA enabled on your account, you'll need to generate a personal access token.

If you don't already have an SSH key set up, you'll need to add one to your account.

Optional: add current git branch to Bash prompt

First let's see if you already have a .bash_profile in your home directory:

ls -al ~/ |grep .bash

If you don't have anything called .bash_profile in the results, do:

mv .bash_profile ~/
. ~/.bash_profile

You should see the branch name appear in your prompt.

If you already have a .bash_profile, just copy the parsing function to the end of your existing file:

cat ~/.bash_profile .bash_profile > ~/.bash_profile
. ~/.bash_profile

Branch!

cli-branch

Make a new branch and check it out in one step:

git checkout -b hello-world

Add your hello!

cli-add

In the text editor of your choice, create a file in the hello-world directory of the repo with your name as the filename. Then do a git add to track the new file:

cd hello-world
touch your-name.md
echo "Hello, my name is ..." > your-name.md
git add your-name.md

Optional: do git status to see what's been staged.

Fear of commitment? Fear not! cli-commit

git commit -m"Say hello"

Optional: do git status again.

If you've never used git at all on your computer, the commit will fail and you'll be prompted to run the following:

git config --global user.email "[email protected]"
git config --global user.name "your name"

Do that and run git commit again.

Push your branch!

cli-push

git push -u origin HEAD

Create a pull request!

gui-pr You can either submit your pull request (PR) to the upstream in the git-dance org, or just the master branch in your own repo. When creating a PR, you can compare any branch to any branch. The base is what you want to merge into. But sometimes you compare two branches with no intention of merging, just to talk about the diff.

If you want to be able merge your own PR, make the base your own master. You’ll see a merge button after you create it because you have permission to merge in your own repo. But if you submit it to the git-dance org, a maintainer will have to approve it.

There’s a new feature that you can opt to allow maintainers to make commits on your branch, which is nice -- it can save some back-and-forth with commenting.

Merge!

If you made the base branch the master in your own repo, you can merge your PR yourself! 🎉

If you submitted it to the git-dance org, I'll review it as soon as I can!

More branching

Check out the network graph on Munki or any open-source project for a visualization of how multiple collaborators can work in the same repo.

Another fun one: https://twitter.com/jay_gee/status/703360688618536960

Best practices and other closing thoughts

At GitHub we use GitHub to build GitHub. In ways, we’re like a microcosm of the open-source community. At GitHub, you should never be afraid to ask a question or ask for help. But that being said, it’s appreciated if you search for prior art.

Because you can track how something has changed, and why, there’s a rich context for how something was built. You can use that context when trying to figure out a problem. The internet is a big place, and someone else may have already solved the same problem. If they write good commit messages and comments, it’s like you have the magic power to go back in time and get in their brain and see how they solved it!

When you document as you go, you’re doing a service to everyone on the internet, but also you're doing a favor to your future self.

But just as the internet can be a wonderful place, it can also be a terrible place! Remember that your goal is to communicate and collaborate with other humans. Keep it classy.

Additional resources

mactech2016's People

Contributors

aurica avatar eeigerman avatar hagridaaron avatar missinformed avatar mostlikelee avatar new-hubber avatar realityzer0 avatar tburgin avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.