List of commits:
Subject Hash Author Date (UTC)
changed profiling output timestamp format e0969fdab8ecab90177fa11d7459dc46d45f5418 mcehlert 2014-02-24 15:55:31
added profiling option to start script 634b3664b6b694303fb9787781e074432967ead5 mcehlert 2014-02-24 15:45:06
added usage to readme 8125b1f4f8cb59d96c8444accab88d77bf6dd42a mcehlert 2014-01-09 16:02:47
a lot of refactoring for more modular structure 660e0d15e9b18aa9c1100c874e2140220f1c5860 mcehlert 2014-01-09 15:51:02
a lot of refactoring for more modular structure dcf7bd73ccc2f871ab8d48c43d11a8e5b392b6de mcehlert 2014-01-09 15:50:53
initial commit - pre colloquim state 655c77556f9d8e40b52893887cdb0d90f726fdbf Mathias Ehlert 2013-11-22 13:47:29
Initial commit f53ec7a3f25d55c53aa12c2682b216e16570cdc7 Mathias Ehlert 2013-11-22 13:37:47
Commit e0969fdab8ecab90177fa11d7459dc46d45f5418 - changed profiling output timestamp format
Author: mcehlert
Author date (UTC): 2014-02-24 15:55
Committer name: mcehlert
Committer date (UTC): 2014-02-24 15:55
Parent(s): 634b3664b6b694303fb9787781e074432967ead5
Signing key:
Tree: 1efeef24af1dfe5c86bd9ea05159447027aff49c
File Lines added Lines deleted
start.py 1 1
File start.py changed (mode: 100644) (index 434481f..682fdba)
... ... args = parser.parse_args()
17 17 if args.profiling: if args.profiling:
18 18 pr = cProfile.Profile() pr = cProfile.Profile()
19 19 s = StringIO.StringIO() s = StringIO.StringIO()
20 timestamp = str(datetime.datetime.now().strftime('%Y%m%d%H%M%S'))
20 timestamp = str(datetime.datetime.now().strftime('%Y%m%d_%H%M%S'))
21 21 outfile = open('profiling_output_'+timestamp+'.txt', 'w') outfile = open('profiling_output_'+timestamp+'.txt', 'w')
22 22 pr.enable() pr.enable()
23 23
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/coria/coria-backend

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

Clone this repository using git:
git clone git://git.rocketgit.com/user/coria/coria-backend

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