You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Run the config command to create a config file and open it in your default editor.
58
+
In linux terminal, you must set your preferred editor in the environment. For example, use `export EDITOR=vim` to edit the files with vim (put this in `.bashrc` or similar to have it always configured).
58
59
If nothing happens, open the file manually: `~/.gtt/config.yml` - on Windows: `C:\Users\YourUserName\.gtt\config.yml`
59
60
60
61
```shell
@@ -484,6 +485,10 @@ token: abcdefghijklmnopqrst
484
485
# defaults to false
485
486
proxy: http://localhost:8080
486
487
488
+
# Don't check SSL certificate
489
+
# defaults to false
490
+
insecure: true
491
+
487
492
# Project
488
493
# defaults to false
489
494
project: namespace/projectname
@@ -543,15 +548,15 @@ hoursPerDay: 8
543
548
issueColumns:
544
549
- iid
545
550
- title
546
-
- estimation
551
+
- total_estimate
547
552
548
553
# Include the given columns in the merge request table
549
554
# See --merge_request_columns option for more information
550
555
# defaults to iid, title, spent, total_estimate
551
556
mergeRequestColumns:
552
557
- iid
553
558
- title
554
-
- estimation
559
+
- total_estimate
555
560
556
561
# Include the given columns in the time record table
557
562
# See --record_columns option for more information
.then(frame=>console.log(`Starting project ${config.get('project').magenta}${frame.resource.type.blue}${('#'+frame.resource.id).blue} at ${moment().format('HH:mm').green}`))
0 commit comments