Skip to content

Instantly share code, notes, and snippets.

@JunilJacob
JunilJacob / clean_git_tags.sh
Created June 17, 2017 21:31 — forked from awilliams/clean_git_tags.sh
Delete multiple grepable tags from git
#!/bin/bash
for i in $( git tag -l | grep staging ); do
echo Tag: $i
#git tag -d $i
#git push origin :refs/tags/$i
done
ApplicationController.allow_forgery_protection = false
app.post('/users/sign_in', {"users"=>{"email"=>"sam@example.com", "password"=>"password"}})