The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55 will be the first on the list, already selected:
🇧🇷 [pt-BR]
| #folder structure | |
| #GITBLIT_PATH=/opt/gitblit/app/[VERSION] | |
| #GITBLIT_BASE_FOLDER=/opt/gitblit/data | |
| #GITBLIT_HTTP_PORT=0 | |
| #GITBLIT_HTTPS_PORT=8443 | |
| #GITBLIT_LOG=/opt/gitblit/app/[VERSION]/gitblit.log | |
| #run as gitblit user | |
| groupadd gitblit | |
| useradd -g gitblit -d /opt/gitblit gitblit |
The Github doesn't provide country code for Brazil (+55). To add this option, just run the code below in your console. The option Brazil +55 will be the first on the list, already selected:
🇧🇷 [pt-BR]
In Terminal
mkdir ~/.bashCopy the raw git-prompt.sh file from git contrib in to the ~/.bash directory: https://github.com/git/git/blob/master/contrib/completion/git-prompt.sh
Inside ~/.bashrc or ~/.bash_profile (choose the file where you normally put any bash customizations/setup), add the lines:
| Imagem Docker para rodar um firefox com o warsaw configurado para acesso a bancos brasileiros. | |
| É uma boa opção para acessar bancos através de GNU/Linux. | |
| Have a nice day. | |
| More Info: | |
| https://hub.docker.com/r/lichti/warsaw-browser/ | |
| https://github.com/lichti/containers4docker/tree/master/warsaw-browser |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # If not running interactively, don't do anything | |
| [ -z "$PS1" ] && return | |
| # don't put duplicate lines or lines starting with space in the history. | |
| # See bash(1) for more options | |
| HISTCONTROL=ignoreboth |
| How to keep git log and less output on the screen | |
| http://serebrov.github.io/html/2014-01-04-git-log-and-less-keep-output.html | |
| Just for git commands: | |
| git config --global --replace-all core.pager "less -iXFR" | |
| For less globally (including git) - add to .bashrc / .zshrc / etc: | |
| export LESS=-iXFR | |
| The options we set for less are: |
| # (1) use Alpine Linux for build stage | |
| FROM alpine:3.11.3 as build | |
| # (2) install build dependencies | |
| RUN apk --no-cache add openjdk11 | |
| RUN apk --no-cache add maven | |
| # build JDK with less modules | |
| RUN /usr/lib/jvm/default-jvm/bin/jlink \ | |
| --compress=2 \ | |
| --module-path /usr/lib/jvm/default-jvm/jmods \ |