git

08
Feb
Auto Deploy Using Github Action

Auto Deploy Using Github Action

Simple script to deploy branch to a server
1 min read
21
Aug
Reduce size of .git Folder

Reduce size of .git Folder

.git folder for git sometimes ends up tens of megabyte. Such unusual size is usually caused by misconfigure of .gitignore, causing git recording changes of large files such as images and videos.
20
Jun
Merge Two Unrelated Git Repository

Merge Two Unrelated Git Repository

Considering others have downloaded a repo and developed in local git environment with brand new git history such that it cannot be merge back to the repo where it was initially cloned from. How to merge the two repo without losting git history?
1 min read
04
Dec
SSH Key Generation and How to use Multiple Keys

SSH Key Generation and How to use Multiple Keys

Key Generation ssh-keygen -t rsa -C "your.email@example.com" -b 4096 File with .pub is the public
1 min read