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: Remove or Disable Windows Defender

$username='domain\serviceAccount' $password='PasswordHere' $encryptedPassword=ConvertTo-SecureString $password -AsPlainText -Force $credentials = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $userName,$encryptedPassword; $computerNames=@( 'SERVER01',…

Hyper-V: Cloning a Virtual Machine

Update 11/25/2021: There's anther variation of this function at: https://blog.kimconnect.com/powershell-create-hyper-v-guest-vm-from-virtual-disk-vhdx/This function will dynamically detect source…

PowerShell: Windows 2016 Pristine Image

Desired Output Windows Server deployment should be made as seamless and efficient as possible. Here's…