Last update: 30-01-2024
Last view: 25-11-2025
Go to your work folder, mine is located at:
F:/Work/EnterpriseName/
And then create a .gitconfig-work with the following data:
| const readline = require("readline"); | |
| const rl = readline.createInterface({ | |
| input: process.stdin, | |
| output: process.stdout | |
| }); | |
| async function doQuestion(question) { | |
| const response = await new Promise( resolve => { | |
| rl.question(question, (data) => { |