Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. #!/bin/bash
  2. git filter-branch -f --prune-empty --tree-filter '
  3. if [ -f .gitattributes ]; then
  4. git rm -f .gitattributes
  5. fi
  6. if [ -f webapp/app/static/menu/menuvideo.mov ]; then
  7. ref=$(cat webapp/app/static/menu/menuvideo.mov)
  8. echo -n "$ref" git lfs smudge > webapp/app/static/menu/menuvideo.mov
  9. git add webapp/app/static/menu/menuvideo.mov
  10. fi' --tag-name-filter cat -- --all
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement