What is Git Flow?? Git Flow is the successful branching suggested by Vincent Driessen This model can be acheived by using git commands any way, but to simplify git-flow toolset has been introduced which is extension to git installation Installing git-flow For installation Refer Cheat Sheet of git-flow toolset This cheatsheet seems to be very useful My take… Continue reading Best Branching Strategy / Git Flow
Author: continuous learner
devops & cloud enthusiastic learner
Installing Specific LTS Version of Jenkins on Ubuntu
Install openjdk8 Execute the following commands in order sudo apt-get update sudo apt-cache search openjdk Note: Select any suitable package from the top. This documentation selects the openjdk-8-jdk sudo apt-get install openjdk-8-jdk Prepare your system for jenkins in ubuntu Execute the following commands wget -q -O – https://pkg.jenkins.io/debian/jenkins-ci.org.key | sudo apt-key add – echo deb… Continue reading Installing Specific LTS Version of Jenkins on Ubuntu
