Skip to content

Instantly share code, notes, and snippets.

View carlosh93's full-sized avatar

Carlos Hinojosa carlosh93

View GitHub Profile
@carlosh93
carlosh93 / gist:7b08822ec408b925e955fd827eb86363
Last active December 16, 2020 19:53
Sublime Text 3 license key 2020 Updated and working perfectly
----- BEGIN LICENSE -----
Member J2TeaM
Single User License
EA7E-1011316
D7DA350E 1B8B0760 972F8B60 F3E64036
B9B4E234 F356F38F 0AD1E3B7 0E9C5FAD
FA0A2ABE 25F65BD8 D51458E5 3923CE80
87428428 79079A01 AA69F319 A1AF29A4
A684C2DC 0B1583D4 19CBD290 217618CD
5653E0A0 BACE3948 BB2EE45E 422D2C87
@carlosh93
carlosh93 / delete_commit.sh
Last active August 19, 2020 16:37 — forked from dsci/gist:1347672
Delete commits from git repository #git #bash #linux #github
# First, check out the commit you wish to go back to (get sha-1 from git log)
git reset --hard 9d3c3a0caa7f7b35ef15adb96fc80fcbb59ac72a
# Then do a forced update.
git push origin +9d3c3a0caa7f7b35ef15adb96fc80fcbb59ac72a^:develop
# Push specific commit
git push origin 9d3c3a0caa7f7b35ef15adb96fc80fcbb59ac72a:develop -f