Skip to content

Commit

Permalink
Sync some alias updates
Browse files Browse the repository at this point in the history
  • Loading branch information
fbartho committed Nov 29, 2017
1 parent 26677cc commit bfc4287
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .gitconfig
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
keepBackup = false;
tool = p4merge
[mergetool "p4merge"]
cmd = p4merge "$BASE" "$LOCAL" "$REMOTE" "$MERGED"
cmd = "p4merge \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\""
keepTemporaries = false
trustExitCode = false
keepBackup = false
Expand All @@ -69,9 +69,10 @@
pushNonFastForward = false
statusHints = false
[filter "lfs"]
clean = git-lfs clean %f
smudge = git-lfs smudge %f
required = true
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
[core]
excludesfile = /Users/fbarthelemy/.gitignore_global
[diff]
Expand Down
1 change: 1 addition & 0 deletions bin/decorporate
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

echo 1. Remove the configuration profiles
sudo profiles -P | grep -v "configuration" | cut -d \ -f 4 | xargs -L1 echo sudo profiles -R -p
sudo profiles -D -f

echo 2. Remove JAMF
sudo rm -r /Applications/Self\ Service.app
Expand Down
Binary file removed bin/jq
Binary file not shown.
9 changes: 9 additions & 0 deletions bin/kill-sophos
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh
# Disable Sophos On Access

set -o errexit
sudo defaults write /Library/Preferences/com.sophos.sav.plist AutoLaunch -bool false
sudo pkill SophosScanD || echo "SophosScanD wasn't running, nothing killed"
sudo pkill Sophos Anti-Virus || echo "Sophos Anti-Virus wasn't running, nothing killed"

echo "Sophos Murdered."
6 changes: 6 additions & 0 deletions bin/pod_forceupdate
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
#!/usr/bin/env bash

#rm -rf "${HOME}/Library/Caches/CocoaPods"
#rm -rf "`pwd`/Pods/"
pod cache clean --all
pod update

0 comments on commit bfc4287

Please sign in to comment.