Skip to content

Instantly share code, notes, and snippets.

View deild's full-sized avatar

Tōlvä deild

View GitHub Profile

le modèle de branchement et de workflow Git Simple

La branche principale

Le workflow n'utilise qu'une seule branche éternelle.

branches de fonctionnalité

Les branches de fonctionnalité sont le support du travail de développement au jour le jour, c'est pourquoi elles sont de loin les plus courantes de toutes les branches.

'use strict';
var compareFunc = require('compare-func');
var Q = require('q');
var readFile = Q.denodeify(require('fs').readFile);
var resolve = require('path').resolve;
var path = require('path');
var pkgJson = {};
var gufg = require('github-url-from-git');
try {
pkgJson = require(path.resolve(
@deild
deild / Solutions to setting up CI CD pipeline.md
Last active May 21, 2018 19:32
solution to setup the “collaboration - build – test – release” pipeline

Overview

In this Gist I will list solution to setup the “collaboration - build – test – release” pipeline for projects.

Objectives

The objectives for this “pipeline” are:

  • collaborative Git solution
  • build the code for different platforms
@deild
deild / Changing author info.md
Last active May 18, 2018 19:13
Changing author info
@deild
deild / .gitmessage
Last active March 31, 2020 20:25
A useful template for commit messages
# <type>: If applied, this commit will <subject>
# |<---- Using a Maximum Of 50 Characters ---->|
# Explain what and why not how this change is being made
# |<---- Try To Limit Each Line to a Maximum Of 72 Characters ---->|
# Provide any references to tickets, articles or other resources
# Example: See #123, Fixes #456
# --- COMMIT END ---