If your repository is not public generate a new deploy token:
- Go to Settings >> Repository >> Deploy Tokens
- Generate a new Deploy Token. You get an
username
and adeploy_token
Jenkins version tested: (ver. 2.235.2)
- Go to settings of a project
/** | |
* Automatiza a criação e inserção do codiguin do free fire | |
* Do jeito em que está, deve ser executado em https://reward.ff.garena.com/en | |
* @param prefix prefixo do codiguin | |
* @param tamanho tamanho do codiguin | |
*/ | |
function tentaCodiguin(prefix, tamanho) { | |
// cria codiguin | |
for (var e = tamanho - prefix.length, t = "", n = "023456789ABCDEFGHJKLMNPQRSTUVWXYZ", o = n.length, c = 0; c < e; c++) | |
t += n.charAt(Math.floor(Math.random() * o)); |
It add the submodule:
git submodule add -b <branch> <repository_url> <diretory_path>
Cloning a project who has submodules, use the clone command with the option --recurse-submodules
. It will garantee submodules are also cloned.
git clone --recurse-submodules <repository_url>
Enter in your local svn repo and execute the following command, this creates a users.txt file
svn log -q | awk -F '|' '/^r/ {gsub(/ /, "", $2); sub(" $", "", $2); print $2" = "$2" <"$2">"}' | sort -u > users.txt
An filled line example:
admin.svn = Admin Svn <[email protected]>
// Web Masks | |
/** | |
* Mascara de Telefone para ser usada em inputs html | |
* @param {KeyboardEvent} evt - O evento será entregue aqui | |
* @example <caption>Executa a mascara quando evento keyup é lançado.</caption> | |
* document.querySelector('#phone').addEventListener('keyup',execMascaraTel); | |
* @author Vinicius de Santana <[email protected]> | |
* @license CC BY-NC | |
*/ |