lunedì 19 dicembre 2016

wrong branch? git: move changes to the right branch

Working on the wrong branch ? (e.g. master)
do:

git stash
git checkout rightbranch
git stash apply

Nessun commento:

How to deploy Podman images to OpenShift Container Platform (CRC on localhost)

I have a microservice on localhost and I want to deploy its Podman image on OCP, which I am running using CRC on localhost.       1. Get the...