Skip to content

Instantly share code, notes, and snippets.

@jhodge-chwy
jhodge-chwy / gitflow-breakdown.md
Created December 12, 2022 18:48 — forked from JamesMGreene/gitflow-breakdown.md
`git flow` vs. `git`: A comparison of using `git flow` commands versus raw `git` commands.

Initialize

gitflow git
git flow init git init
  git commit --allow-empty -m "Initial commit"
  git checkout -b develop master

Connect to the remote repository

@jhodge-chwy
jhodge-chwy / jenkins-utils-functions.sh
Created October 28, 2022 00:46 — forked from xbalaji/jenkins-utils-functions.sh
jenkins-utils-functions.sh
# source this file and use the functions, download the jenkins-cli.jar first
export JENKINS_SERVER=localhost
export JENKINS_PORT=8080
export JENKINS_USER='admin'
export JENKINS_PASS='admin'
export JENKINS_PROTO='http'
export JENKINS_JOBDIR="jenkins-jobs"
jenkins_urlhelp() {
echo "copy, change and paste for customization"