Deleting a Recreating TagsAugust 03, 2017 |
# delete tag locally
git tag -d tag.name
# delete tag on remote
git push origin :tag.name
# Add tag locally
git tag -a -m "creating release" tag.name
# Add push tag to remote.
git push origin tag.name
Everything a Web Designer needs to know about Git!September 05, 2013 |
Don't use Tower because somehow you'll manage to break everything in magical ways that make no sense to me.
Well I'm going to assume some things. If these things aren't true, assuming they are won't actually help on your part.
Version Server Conf Files Locally with GitJuly 17, 2014 |
cd your_conf_folder
git init
vim .gitignore
Copy the following whitelisting code into the file and modify where necessary.
# First, ignore everything
*
# Now, whitelist anything that's a directory
!*/
# Add all the file types you're interested in.
!*.one
!*.two
!*.etc