Create different ssh key according the article Generating SSH keys.
Example:
Create different ssh key according the article Generating SSH keys.
Example:
UNAME_S := $(shell uname -s) | |
# Note that this ifeq-endif are space-indented for better readability | |
ifeq ($(UNAME_S), Linux) | |
EXECUTABLE ?= linux_executable | |
endif | |
ifeq ($(UNAME_S), Darwin) | |
EXECUTABLE ?= osx_executable | |
endif |
# set (--settings=settings.development) | |
export DJANGO_SETTINGS_MODULE=settings.development | |
# unset | |
unset DJANGO_SETTINGS_MODULE |
# EditorConfig is awesome: http://EditorConfig.org | |
# top-most EditorConfig file | |
root = true | |
[*] | |
charset = utf-8 | |
end_of_line = lf | |
insert_final_newline = true | |
indent_style = space |
git fetch -p | |
git branch -vvv | grep gone | grep -v master | cut -f 3 -d " " # | xargs git branch -D |
# This assumes "origin" is your repo and "upstream" the other repo | |
git fetch upstream | |
git checkout upstream/<branch_name> | |
git checkout -b <your_branch_name> | |
git rebase master # or merge, if you prefer | |
git push --set-upstream origin <your_branch_name> |
pip freeze | xargs pip uninstall -y |
git branch --merged origin/master | grep -v master | grep -v '*' | xargs git branch -D |
django/manage.py makemigrations --dry-run --noinput --settings=$(SETTINGS) | grep 'No changes detected' -q || (echo 'Missing migration detected!' && exit 1) |
Produto: {produto} | |
Problema: | |
{O que aconteceu} | |
Linha do tempo e troubleshooting: | |
{data}: |