Skip to content

Instantly share code, notes, and snippets.

View chetan-hireholi's full-sized avatar
🐳

Chetan Hireholi chetan-hireholi

🐳
  • IBM
  • Toronto, Canada
  • 02:33 (UTC -04:00)
View GitHub Profile
@chetan-hireholi
chetan-hireholi / Apache_Superset_installation_steps.md
Created March 1, 2020 04:14
I have written this document only for my personal use. This document contains some steps and reminders for installing Apache Superset. Since I wanted to install Superset behind a firewall in an organisation, there are some additional steps with the regular installation procedure.

Installing Apache Superset behind an organisation firewall

I have written this document only for my personal use. This document contains some steps and reminders for installing Apache Superset. Since I wanted to install Superset behind a firewall in an organisation, there are some additional steps with the regular installation procedure.

@chetan-hireholi
chetan-hireholi / SyncGithubRepository.md
Last active April 24, 2018 03:57 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date. How to sync your repository with the original repository.

1. Clone your fork: (Though I feel this step is not necessary)

git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream https://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream