This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require('fs'); | |
console.log("Qual arquivo com as querys ?"); | |
var prompt = require('prompt'); | |
prompt.start(); | |
prompt.get([{ | |
name: 'nomeArquivo', | |
description: 'Nome do arquivo ? Ex: querys.txt ', | |
type: 'string', | |
required: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# clone only the remote primary HEAD (default: origin/master) | |
git clone --single-branch | |
as in: | |
git clone <url> --branch <branch> --single-branch [<folder>] | |
You can see it in t5500-fetch-pack.sh: | |
test_expect_success 'single branch clone' ' | |
git clone --single-branch "file://$(pwd)/." singlebranch |