List of commits:
Subject Hash Author Date (UTC)
master first pass a15417f304e070121e34272eaedf1e51fce5f1fd mbusenitz 2015-02-26 06:00:11
Squashed 'test/plank/' content from commit 09a9867 486e835d9a925e450abfb6dfce9437e808b5cf0f mbusenitz 2015-02-26 05:29:41
init 4d1b6b27cb5dc364239073fa755a549b817031b9 mbusenitz 2015-02-26 05:29:35
Commit a15417f304e070121e34272eaedf1e51fce5f1fd - master first pass
Author: mbusenitz
Author date (UTC): 2015-02-26 06:00
Committer name: mbusenitz
Committer date (UTC): 2015-02-26 06:00
Parent(s): ea6f92eef9177ebf5b724f6213890095fcda1949
Signer:
Signing key:
Signing status: N
Tree: a861290027dc1903800a773e76b81f3e3899d70c
File Lines added Lines deleted
.gitignore 2 0
def.gypi 6 0
test/lib/spawn-empty 1 0
test/src/main.cpp 10 0
test/test.gyp 18 0
File .gitignore added (mode: 100644) (index 0000000..c24cd6e)
1 .DS_Store
2 test/build/
File def.gypi added (mode: 100644) (index 0000000..78c24d2)
1 {
2 'target_defaults': {
3 'sources': [
4 ]
5 }
6 }
File test/lib/spawn-empty added (mode: 120000) (index 0000000..c25bddb)
1 ../..
File test/src/main.cpp added (mode: 100644) (index 0000000..27c40af)
1 #include <iostream>
2
3 #include <plank/src/test.h>
4
5 int main(int argc, const char * argv[])
6 {
7 ASSERT(1);
8 std::cout << "hello test cases" << std::endl;
9 return 0;
10 }
File test/test.gyp added (mode: 100644) (index 0000000..aeaa5a3)
1 {
2 'includes':[
3 'lib/spawn-empty/def.gypi',
4 'plank/def/mac-targets.gypi',
5 'plank/def/cpp11.gypi'
6 ],#includes
7 'target_defaults': {
8 'target_name': 'test',
9 'type': 'executable',
10 'sources': [
11 'src/main.cpp',
12 ], #sources
13 'include_dirs': [
14 'plank/src/',
15 '.'
16 ], #include_dirs
17 }, #target_defaults
18 }
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/dynamo

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

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

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