Coder Social home page Coder Social logo

facts's Introduction

Turing School Wiki

Purpose: To capture some of the useful links and references that would otherwise be lost in the Slack ether.

Module-Specific

See Facts by Module

Non-Module Specific

Languages and Frameworks

See Language Resources

Git & GitHub

Workflow

by Andrew Fink

  1. pull from remote master into your local master
  2. checkout branch
  3. do work, commit.
  4. when you're ready to push...don't yet! switch to your local master and pull from master
  5. then switch back to your branch and "git merge master", this will merge your updated local master into your branch
  6. fix any merge conflicts
  7. run your tests, fix any broken tests
  8. add, commit
  9. now it's ok to push your branch and open a PR "git push origin HEAD" or "git push origin "
  10. open pull request on GitHub.
  11. as soon as a branch is merged to master on GitHub, make your entire team pull from master

Workflow (Rebase method)

by Jason Noble

  1. pull from remote master into your local master
  2. checkout branch
  3. do work, commit.
  4. git fetch
  5. git rebase origin/master
  6. Fix any merge conflicts
  7. run your tests, fix any broken tests
  8. add, commit
  9. now it's ok to push your branch and open a PR "git push origin HEAD" or "git push origin "
  10. open pull request on GitHub.
  11. as soon as a branch is merged to master on GitHub, make your entire team pull from master

Workflow (using Waffle.io)

by Jason Wright & Adam Caron

  1. add issue in Waffle.io
  2. create feature branch
  3. do some code
  4. push branch
  5. submit pull request, with description that "closes 'issue#'" (ie. "closes #1")
  6. other person reviews pull request
  7. (if merged) git checkout master
  8. git pull origin master
  9. merge master into branch

Workflow (ThoughtBot)

Git Protocol Guide

Git In Depth Basics for non-programmy People

by Dave Maurer Public Gist

facts's People

Contributors

imwithsam avatar jwan622 avatar biglovisa avatar davemaurer avatar jcasimir avatar

Watchers

 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.