❗ on git bash on windows you may need to turn off path conversion. |
---|
You can do so with export MSYS_NO_PATHCONV=1 |
First of all you need to have a Root Certificate to sign your issued certificates with
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# All Vagrant configuration is done below. The "2" in Vagrant.configure | |
# configures the configuration version (we support older styles for | |
# backwards compatibility). Please don't change it unless you know what | |
# you're doing. | |
Vagrant.configure("2") do |config| | |
# Every Vagrant development environment requires a box. You can search for |
([a-z0-9_\*]*)\t([a-zA-Z\/°²\-\%]*)\t(.+)\t(.+)\t[X]{0,1}\t[X]{0,1}
If testing at https://regexr.com/ use /gm
/^([a-z0-9_\*]*)\t([a-zA-Z\/°²\-\%]*)\t(.+)\t(.+)\t[X]{0,1}\t[X]{0,1}$/gm
When you have merged a branch into another and deleted it on bitbucket, it may still exist on your PC. if you experience that there are too many of these, this command will remove them. Consider cleaning up your local branches first.
git remote update origin --prune
import java.util.ArrayList | |
import hudson.model.*; | |
def ArrayList<String> getJobList(String pipelineName) { | |
def hi = hudson.model.Hudson.instance; | |
def item = hi.getItemByFullName(pipelineName); | |
def jobs = item.getAllJobs(); | |
def arr = new ArrayList<String>(); |