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: Notify Each User Before Password Expires

# This script email users basing on their password expiration dates # User input variables…

PowerShell: Hyper-V Guest-VM C-Volume Expansion

# Hyper-V-Guest-VM-Volume-Expansion.ps1 # Set variables: $vmName="TESTWindows.intranet.kimconnect.net"; $driveLetter="C"; $newSize="160GB"; function selectDisk($vmname){ $paths=(get-vm $vmName | select -expand…

PowerShell: Combine Objects

By default, a PowerShell Custom Object cannot be added to another. This would be the…