decoder-leco / decoderleco_deces_europe_reloaded

A full rewrite of all https://github.com/decoderleco/deces_europe R computations, but with Jupyter notebooks
0 stars 1 forks source link

Décoder l'éco: Statistiques des Décès en Europe

Ce repository contient une ré-écriture complète des traitements R faits dans https://github.com/decoderleco/deces_europe, mais sous forme de Notebooks Jupyter.

ANNEX: The git fflow init

This is how the git flow was initialized in this repo:

export GIT_SSH_URI_OF_THE_REPO="git@github.com:decoder-leco/decoderleco_de ces_europe_reloaded.git"
export GITCLONE_FOLDER=$(echo "${GIT_SSH_URI_OF_THE_REPO}" | awk -F '/' '{ print $NF }' | sed 's#.git##g' )
echo " GITCLONE_FOLDER=[${GITCLONE_FOLDER}]"

git clone ${GIT_SSH_URI_OF_THE_REPO}

cd ./${GITCLONE_FOLDER}/

rm -fr ./.git/

git init --initial-branch=master

git remote add origin ${GIT_SSH_URI_OF_THE_REPO} && git add -A && git commit -m "init git flow" && git push -u origin master && git flow init --defaults && git push -u origin --all