Commit Graph

122 Commits

Author SHA1 Message Date
91686c4272 support powershell as target shell 2020-06-18 23:43:05 +02:00
d9af21cc6b Merge pull request #59 from mavrk/master
Update README.md
2018-05-27 12:04:15 -04:00
6ac49aac2f Update README.md 2018-05-20 17:45:08 +05:30
a686cc5bcb Merge pull request #57 from veggiedefender/master
Set execute permissions on generated script
2018-05-09 16:12:59 -04:00
84e75e0b87 Add gliders template 2018-05-09 13:00:45 -04:00
2a908acf05 Set execute permissions on generated script 2018-05-09 12:50:42 -04:00
af7c6f4f8e Merge pull request #55 from gmarmstrong/env-bash
Replace "/bin/bash" with "/usr/bin/env bash"
2018-04-12 16:16:18 -04:00
3001c5c189 Replace "/bin/bash" with "/usr/bin/env bash" 2018-04-12 00:34:21 -04:00
2e2f9fff3b Merge pull request #54 from irishshagua/Add_New_Template
Add new beer template
2018-03-04 20:07:49 -05:00
d605712886 Add new beer template 2018-03-04 21:44:49 +00:00
53cb8c69fb Merge pull request #51 from mxm/master
Adjust final message
2018-02-09 11:57:47 -05:00
7ef5f32025 Adjust final message
Removes the 'new' behind the GitHub URL and adds the actual repo name to the sentence:

Old: "Create a new(!) repo at https://github.com/new and run the script"
New: "Create a new(!) repo named _reponame_ at https://github.com and run the script"
2017-09-30 19:40:05 +02:00
c853d1cc29 Update README.md 2017-06-27 14:01:34 -07:00
9feaf24a18 Merge pull request #48 from bryant1410/master
Fix broken headings in Markdown files
2017-06-10 22:08:07 -04:00
a99941e25e Fix broken Markdown headings 2017-04-18 04:18:07 -03:00
cfb0d89747 Merge pull request #45 from antoinegergy/master
Fix git pull error
2016-11-06 22:02:56 -05:00
0df25a7527 Fix git pull 2016-08-16 12:59:36 +02:00
92c44e6b4d Merge pull request #42 from numberoverzero/master
Use --allow-empty for performance, resolves #32
2016-06-28 15:09:33 -04:00
7a80c1d730 drop unused content arg from commit function 2016-06-12 15:23:26 -07:00
52884b2999 Use --allow-empty for performance gelstudios/gitfiti#32
* Improves the size of the generated file:

2365211 new-gitfiti.sh
2529001 original-gitfiti.sh

* Cutting the number of executed commands in half (no more echo)
* Vastly reduces the amount of gc git performs during push
2016-06-12 15:15:48 -07:00
9e06be360b Merge pull request #39 from homeworkprod/master
More refactoring and tests.
2016-06-09 19:10:19 -04:00
824bdf0c4d Update README.md 2016-06-09 18:57:36 -04:00
4e194f837f Merge pull request #40 from homeworkprod/travis-config
Added initial configuration file for Travis CI. 👍
2016-06-09 18:50:08 -04:00
b92ea7529c Added Python'3.5-dev' and 'nightly' to the build bot. 2016-06-10 00:44:41 +02:00
25a3a2c1b2 Added initial configuration file for Travis CI. 2016-06-10 00:40:43 +02:00
65b7694662 Simplified finding of highest daily count by using the max function. 2016-06-10 00:25:44 +02:00
d23a2d0746 Extracted function to parse daily counts from a contributions SVG and added a test for it. 2016-06-10 00:24:06 +02:00
2c9c4cba83 Added test for find_max_daily_commits. 2016-06-10 00:22:44 +02:00
4d4af436f4 Retrieve and return the contributions calender as a string; split into lines later as part of the processing stage. 2016-06-10 00:15:26 +02:00
18b49c1dad Clarified names. 2016-06-10 00:13:03 +02:00
2fe08fd28a Merge pull request #34 from homeworkprod/cleanup
Python 3 fixes, refactoring, cleanup, and a first test.
2016-06-09 14:52:11 -04:00
6aa52725a6 Adjusted calendar SVG retrieval to work on Python 3, too. 2016-06-06 01:23:25 +02:00
603c7f30e7 Extracted "constant" for fallback image name. 2016-06-06 01:23:25 +02:00
580c13ab68 Slightly streamlined user interface. 2016-06-06 01:23:25 +02:00
777f264796 Make raw_input available on Python 3 by aliasing it to input. 2016-06-06 01:23:25 +02:00
3e92a86161 Fix str_to_sprite on Python 3.
I'm using a list comprehension as it is easier to grok than `list(map(list, lines))`.
2016-06-06 01:23:25 +02:00
811a7c2a44 Fixed import of urlopen[2] on Python 3. 2016-06-06 01:23:25 +02:00
e7e67834c8 Introduced package for tests and added a test case for str_to_sprite.
The string variant of the "one-up" image, however, does not match the number-based one, to the expectation for the test had to be adjusted (basically replacing 1s with 0s).
2016-06-06 01:23:25 +02:00
5b6a3cfc2c Finding the highest daily commit count once is sufficient. 2016-06-06 01:23:21 +02:00
302e83416d Use one-liner. 2016-06-06 01:23:03 +02:00
f6727b2555 Extracted function calls. 2016-06-06 01:23:03 +02:00
ca1dc8f00e Turn the optional Git URL argument into a mandatory one. 2016-06-06 01:23:03 +02:00
02d049b1a3 Introduced a few variables. 2016-06-06 01:23:03 +02:00
71c88fc084 Turn the optional base URL argument into a mandatory one. 2016-06-06 01:23:03 +02:00
68a1fb2b03 Extracted "constant" for GitHub base URL. 2016-06-06 01:23:03 +02:00
73361c64d9 Prefix function names with verbs to avoid confusion (or upcoming conflicts) with variables. 2016-06-06 01:23:02 +02:00
bdcdd8f137 Selectively employ one-liner conditionals for brevity. 2016-06-06 01:22:12 +02:00
822048909b Extracted function to request user input. 2016-06-06 01:22:10 +02:00
60c2aae15f Fixed name and acronym case. 2016-06-06 01:21:53 +02:00
bb31c8eb46 Create empty dict via literal syntax instead of function call. 2016-06-06 01:21:53 +02:00