List of commits:
Subject Hash Author Date (UTC)
cleanup f5cbde963e841bf63f51cc28ec389b6580345ed3 Ubuntu 2020-03-29 04:42:07
deepmerge aee7de1ccef07d1162231fad345a1dc1513452fb Ubuntu 2020-03-29 04:39:34
init e6d74419d4aaaa415732b596065b2f5cd67d66ef Ubuntu 2020-03-28 22:44:10
Commit f5cbde963e841bf63f51cc28ec389b6580345ed3 - cleanup
Author: Ubuntu
Author date (UTC): 2020-03-29 04:42
Committer name: Ubuntu
Committer date (UTC): 2020-03-29 04:42
Parent(s): aee7de1ccef07d1162231fad345a1dc1513452fb
Signing key:
Tree: c9fc65a6789952d5308b7d5af51dffa5881b9217
File Lines added Lines deleted
index.js 1 3
File index.js changed (mode: 100755) (index 93e3d90..63c5640)
... ... command += otherArgs.join( ' ' );
16 16 console.log( command ); console.log( command );
17 17 */ */
18 18 function readDef(defFile) { function readDef(defFile) {
19 const base = path.dirname(defFile);
20
21 19 return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
20 const base = path.dirname(defFile);
22 21 fs.readFile(defFile, 'utf8', (err, def) => { fs.readFile(defFile, 'utf8', (err, def) => {
23 22 if (err) throw err; if (err) throw err;
24 23 let result = JSON.parse(def); let result = JSON.parse(def);
 
... ... function readDef(defFile) {
33 32 return readDef(path.join(base, entry)); return readDef(path.join(base, entry));
34 33 }); });
35 34 Promise.all(batch).then( results => { Promise.all(batch).then( results => {
36 console.log(results);
37 35 resolve(deepmerge.all([result, ... results])); resolve(deepmerge.all([result, ... results]));
38 36 }); });
39 37 } }
Hints:
Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://rocketgit.com/user/mucbuc/ccargs

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@ssh.rocketgit.com/user/mucbuc/ccargs

Clone this repository using git:
git clone git://git.rocketgit.com/user/mucbuc/ccargs

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a merge request:
... clone the repository ...
... make some changes and some commits ...
git push origin main