Open your web console and execute the snippet and wait to be executed then inspect the element
var timeToBeExecuted = 1000;
setTimeout(() => {
debugger;
}, timeToBeExecuted);
# Fix circleci repo reference | |
# https://community.sonarsource.com/t/code-is-empty-on-pull-request-reviews/822/11 | |
mkdir -p /root/.ssh; | |
echo 'github.com ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAq2A7hRGmdnm9tUDbO9IDSwBK6TbQa+PXYPCPy6rbTrTtw7PHkccKrpp0yVhp5HdEIcKr6pLlVDBfOLX9QUsyCOV0wzfjIJNlGEYsdlLJizHhbn2mUjvSAHQqZETYP81eFzLQNnPHt4EVVUh7VfDESU84KezmD5QlWpXLmvU31/yMf+Se8xhHTvKSCZIFImWwoG6mbUoWf9nzpIoaSjB+weqqUUmpaaasXVal72J+UX2B+2RPW3RcT0eOzQgqlJL3RKrTJvdsjE3JEAvGq3lGHSZXy28G3skua2SmVi/w4yCE6gbODqnTWlg7+wC604ydGXA8VJiS5ap43JXiUFFAaQ==' > /root/.ssh/known_hosts; | |
git fetch --all; | |
git branch -D master; | |
git rev-parse origin/master; |
# Pull Request ID | |
export BC_PR_ID="${BC_PR_ID:-${CI_PULL_REQUEST##*/}}"; | |
REPO=$CI_PULL_REQUEST; | |
REPO=${REPO##https://github.com/}; | |
REPO=${REPO%%/pull/$BC_PR_ID}; | |
# Repo Slug | |
export BC_REPO_SLUG=$REPO; |
Open your web console and execute the snippet and wait to be executed then inspect the element
var timeToBeExecuted = 1000;
setTimeout(() => {
debugger;
}, timeToBeExecuted);
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
const logPrefix = ' --- '; | |
const colors = { | |
reset: '\x1b[0m', | |
bright: '\x1b[1m', | |
dim: '\x1b[2m', | |
underscore: '\x1b[4m', | |
blink: '\x1b[5m', | |
reverse: '\x1b[7m', | |
hidden: '\x1b[8m', |
Name | Link | Description |
---|---|---|
Angular 8 Snippets - TypeScript, Html, Angular Material, ngRx, RxJS & Flex Layout | [![L |
To see the commit differences between develop and master
git checkout master && git pull && git checkout develop && git pull && git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative master..develop
Useful to know what is going to be deployed