List of commits:
Subject Hash Author Date (UTC)
color output 79515e592fad2cee9a985e0050969f6901451e93 Ubuntu 2020-03-30 02:42:46
output 6eec625ecbd51533330d2a1b618d28a433ae1ee4 Ubuntu 2020-03-30 02:37:25
works 1ee1f753c7dc99e4a91665d48ba7d60fd731b138 Ubuntu 2020-03-30 02:33:45
running test 08bdfaabe6111f35074dc1af59197fcc3af7ae3c Ubuntu 2020-03-30 02:23:19
building 249893d05180fa7cd770c22cef1714cc89c4318b Ubuntu 2020-03-30 02:17:05
cleanup 8750a7302fd91be1b984857bbdcd284470545ba2 Ubuntu 2020-03-30 01:16:21
project and common option 58a8a91e410978a52592952951bb6b24fe76964a Ubuntu 2020-03-30 01:12:45
use minimist 16d617198ccd8304ab324fc3989d60bb97177cca Ubuntu 2020-03-30 01:09:25
works with clang++ and g++ (on circuit) 8802dd772799132ab0c6502c1e079bc44365ad3e Ubuntu 2020-03-30 01:03:14
cleanup 45c9d366a75cbff5930fe51189140210835a6337 Ubuntu 2020-03-30 00:26:01
example works 8ed5b07157cd0b49b147939ba7a99f339a9c2d0f Ubuntu 2020-03-29 16:45:36
filtering out header files 22bafc763385d5b5759b924ac07f2474b4692e8b Ubuntu 2020-03-29 12:22:40
Revert "just include source" 3d420145117a1ea5404972165dca26ca0135f70e Ubuntu 2020-03-29 12:04:38
just include source 9d18479598ad88e5bae0d0a8e8bfe0009b47d5cf Ubuntu 2020-03-29 05:19:00
assert 6ba991dbb9b5606355f73c71fca85d80bd169bf9 Ubuntu 2020-03-29 04:59:45
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 79515e592fad2cee9a985e0050969f6901451e93 - color output
Author: Ubuntu
Author date (UTC): 2020-03-30 02:42
Committer name: Ubuntu
Committer date (UTC): 2020-03-30 02:42
Parent(s): 6eec625ecbd51533330d2a1b618d28a433ae1ee4
Signing key:
Tree: 973dc9ecc3ae3747be95d7f04070812e761334a3
File Lines added Lines deleted
index.js 8 0
package-lock.json 5 0
package.json 1 0
File index.js changed (mode: 100755) (index 85d9247..dd38f74)
... ... const fs = require('fs'),
4 4 path = require('path'), path = require('path'),
5 5 tmp = require('tmp'), tmp = require('tmp'),
6 6 shell = require( 'shelljs' ), shell = require( 'shelljs' ),
7 cursor = require('ansi')(process.stdout),
7 8 argv = require('minimist')(process.argv.slice(2)), argv = require('minimist')(process.argv.slice(2)),
8 9 defPath = argv.p ? argv.p : argv.project; defPath = argv.p ? argv.p : argv.project;
9 10
11 console.time('total');
12 process.on('exit', () => {
13 cursor.green();
14 console.timeEnd('total');
15 cursor.reset();
16 });
17
10 18 readDef(defPath) readDef(defPath)
11 19 .then(obj => { .then(obj => {
12 20 readDef(path.join(__dirname, 'asserter/def.json')) readDef(path.join(__dirname, 'asserter/def.json'))
File package-lock.json changed (mode: 100644) (index d6cec31..3e47473)
4 4 "lockfileVersion": 1, "lockfileVersion": 1,
5 5 "requires": true, "requires": true,
6 6 "dependencies": { "dependencies": {
7 "ansi": {
8 "version": "0.3.1",
9 "resolved": "https://registry.npmjs.org/ansi/-/ansi-0.3.1.tgz",
10 "integrity": "sha1-DELU+xcWDVqa8eSEus4cZpIsGyE="
11 },
7 12 "balanced-match": { "balanced-match": {
8 13 "version": "1.0.0", "version": "1.0.0",
9 14 "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
File package.json changed (mode: 100644) (index a3d8e9a..d6451ac)
10 10 "author": "", "author": "",
11 11 "license": "ISC", "license": "ISC",
12 12 "dependencies": { "dependencies": {
13 "ansi": "^0.3.1",
13 14 "minimist": "^1.2.5", "minimist": "^1.2.5",
14 15 "shelljs": "^0.8.3", "shelljs": "^0.8.3",
15 16 "tmp": "^0.1.0" "tmp": "^0.1.0"
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