Skip to content

Instantly share code, notes, and snippets.

View yaneshtyagi's full-sized avatar
💭
I may be slow to respond.

Yanesh Tyagi yaneshtyagi

💭
I may be slow to respond.
View GitHub Profile
@yaneshtyagi
yaneshtyagi / gist:c39d24801807f7ca2d4c
Created February 16, 2016 07:36 — forked from lttlrck/gist:9628955
rename git branch locally and remotely
git branch -m old_branch new_branch # Rename branch locally
git push origin :old_branch # Delete the old branch
git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote
@yaneshtyagi
yaneshtyagi / index.html
Last active December 23, 2015 02:59 — forked from readme42/Rounded-Corner-CSS3-Button.markdown
Rounded Corner Button in CSS3
<input type="button" class="rounded" value="This is a CSS3 rounded corner button"/>