We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d56894b commit 2a47e4fCopy full SHA for 2a47e4f
install.sh
@@ -0,0 +1,22 @@
1
+#! /bin/bash
2
+
3
+if [command -v git]; then
4
+ sudo apt-get update -qq;
5
+ sudo apt install git;
6
+fi
7
8
+if [command -v python3]; then
9
+ sudo apt install python3;
10
11
12
+if [command -v pip3]; then
13
+ sudo apt install python3-pip;
14
15
16
+git clone https://github.com/andre-filho/commit-helper.git ~/.commit-helper;
17
18
+pip3 install --user ~/.commit-helper/requirements.txt;
19
20
+chmod +x $HOME/.commit-helper/generator.py;
21
22
+echo "commit(){ ./$HOME/.commit-helper/generator.py; }" >> $HOME/.bashrc;
test/test_utils.py
@@ -1,5 +1,5 @@
import utils
-import yaml
+# import yaml
def test_get_text_no_context():
0 commit comments