Skip to content

Instantly share code, notes, and snippets.

View dneey's full-sized avatar
🏠
Working from home

Nee dneey

🏠
Working from home
View GitHub Profile
@dneey
dneey / gist:737ad070028f1b865f3e8a7dd2452e95
Created March 5, 2020 13:37 — forked from danielestevez/gist:2044589
GIT Commit to an existing Tag
1) Create a branch with the tag
git branch {tagname}-branch {tagname}
git checkout {tagname}-branch
2) Include the fix manually if it's just a change ....
git add .
git ci -m "Fix included"
or cherry-pick the commit, whatever is easier
git cherry-pick {num_commit}
@dneey
dneey / ssh.md
Created January 24, 2020 22:59 — forked from bradtraversy/ssh.md
SSH & DevOps Crash Course Snippets

SSH Cheat Sheet

This sheet goes along with this SSH YouTube tutorial

Login via SSH with password (LOCAL SERVER)

$ ssh brad@192.168.1.29

Create folder, file, install Apache (Just messing around)

$ mkdir test

$ cd test