-
Recent Posts
Recent Comments
Archives
Categories
Meta
Monthly Archives: March 2019
git Quick Reference
Pull Code from a Repository git clone http://{server/repository.git Add Files to Local Repository git add * Status of Local Files git status Commit Changes Locally git commit -m “Adding new files” Commit Change to Remote Main … Continue reading
Posted in Uncategorized
Leave a comment
Installing Gitea (my own GitHub)
To install Gitea on a Synology under Docker you can pretty much follow the instructions found here I used the custome setup with some minor changes to the USER-UID & USER-GID for the account I want to run under on … Continue reading
SVN Quick Reference
View Repository svn ls svn://{server}/projects Import New Folders in to Repository svn import {folder} svn://{server}/projects/{folder} -m “{comment}” Checkout Folder/Files from Repository svn co svn://{server}/projects/{folder} View Status of Files in Folder svn status Checkin Changed Files … Continue reading
Docker Quick Reference
View/Change Container Status docker ps {list running containers} docker ps -a {list all containers even exited ones} docker container pause … Continue reading
Posted in Code, Docker
Leave a comment
Excel: Expand multi-line rows
How to end up with one row per entry in a spreadsheet when some cells contain multiple entries. This example will expand the data below in to multiple rows using a VB. Noting here for my reference. The following code … Continue reading
Posted in Code, Microsoft, Software
Leave a comment