Skip to content

Instantly share code, notes, and snippets.

View EvanDotPro's full-sized avatar

Evan Coury EvanDotPro

  • Roave.com
  • USA»E»SS»OA»MW»LG»VSC»TU
  • X @EvanDotPro
View GitHub Profile

Git Support Golf

A stupid game by Evan Coury to test and improve your git troubleshooting skills.

How to Play

A new round begins the moment a peer comes to you for help with a git problem.

  • The person asking for help may initially explain the nature of their problem, but not provide the output of any git commands at first.
  • Decide what par level the issue should be. Here are some examples:
@EvanDotPro
EvanDotPro / 0_reuse_code.js
Created March 30, 2017 19:37
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
<html>
<head>
<title>Fishing Map - Fish Connection</title>
<style>
body {
background-color: #383838;
margin: 0px;
padding: 0px;
height: 100%;
display: flex;
<?php
// All PHP files start with <?php
// Two slashes is a comment, as you can see.
// We are going to start with variables.
// Variables are just like, a "container" to hold values.
// All variables in PHP start with a $ sign.
// Their names must start with a letter, not a number
$name = "Max"; // This is a string