Posted On March 31, 2019

Some Common Gitlab Commands

kimconnect 0 comments
blog.KimConnect.com >> Codes , Linux >> Some Common Gitlab Commands
To ignore SSL Cert errors:
git config –global http.sslVerify “false”
 
# checkout changed file
git checkout — Dockerfile
 
# switch to a branch
git checkout kimconnect_updates && git rebase master

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

PowerShell: Find Guest VMs Associated with a Certain Storage Path

# findGuestMvsByStorage.ps1 $storagePath='\\SMBSERVER009' function getAllGuestVms($clusterName){ try{ Import-Module FailoverClusters $clusterName=if($clusterName){ $clustername }else{ (get-cluster).name } $allHyperVHosts={(Get-ClusterNode -Cluster…

Java Virtual Machine Optimal Memory Tuning

Overview: There are five available garbage collectors (GC) for Java Virtual Machines (JVM). Here are…

PowerShell: Manage Remote Desktop Servers by Logging Off Idle Sessions That Have Certain Inactive Programs

# manageRdsSessions.ps1 # Sequence of workflow: # a. Gather active and disconnected sessions on all…