-
create a cmd/bat file with the command. E.g. retag.cmd, save it in C:\git-scripts for example
-
add your git commands to the file. For example, this set of commands deletes the specified tag from your current branch both locally and remotely, then tags it with the same tag and pushes the change remotely
git tag -d %1
git push origin :refs/tags/%1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Squarespace essentially doesn't really document their breakpoints. | |
This can be quite annoying to not have when doing custom CSS. | |
Most themes use essentially one breakpoint. Mobile and not mobile; anything 750 and below is considered mobile. | |
You can use these to write your own CSS and simply use the "Style Editor" to inject your compiled CSS in the event | |
you are not using "Developer Mode" in your site. | |
Enjoy! |