Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

5 total results found

Git Usage in Ubuntu

HowTo

Here’s some commands and such for accessing git from Ubuntu: Use this to mount the bliss.git repository from 192.168.1.211, to /mnt/oga:sudo mount -t cifs //192.168.1.211/oga/bliss.git /mnt/oga -o username=glwhite,noexec This command will clone the above rep...

linux
git
ubuntu
Administration

Windows .SSH Config File Syntax

HowTo

Here are use cases that require editing the SSH config file in your Windows user profile. References Syntax reference for the SSH config file is here: https://www.ssh.com/academy/ssh/config Tutorial for creating them: https://betterprogramming.pub/a-step-by...

SSH
programming
git

TortoiseGit Setting the SSH Key

HowTo

Here are steps to set the SSH key for a repo checkout. Open File Explorer and navigate to the checkout folder. Right-click the folder, Select TortoiseGit → Settings. From the Settings page, on the left-hand navigation pane, locate the Git node a...

git
windows
SSH

GitHub SSH Key Updates

HowTo

When the GitHub client SSH key expires, any checked out repository must be updated to use the new key. This is because we embed key properties in its name. And with many active repositories checked out for development, updating each one is tedious and error-...

git
SSH
Administration

Using Visual Studio with Git

.NET

Visual Studio brings in lots of files and folders that don't belong in a checked in repository. Here's a good gitignore file for Visual Studio projects: # This works in Visual Studio projects # to ignore most VS generated output. # NOTE: It does not work...

Visual Studio
git
programming