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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <!-- Apple documentation: https://developer.apple.com/security/ --> | |
| <!-- https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CocoaKeys.html#//apple_ref/doc/uid/TP40009251-SW33 --> | |
| <plist version="1.0"> | |
| <dict> | |
| ... | |
| <key>NSAppTransportSecurity</key> | |
| <dict> | |
| <key>NSExceptionDomains</key> |
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
| ec = config --global -e | |
| co = checkout | |
| cob = checkout -b | |
| cfgl = config --global --list | |
| amend = commit -a --amend | |
| ll = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate --numstat | |
| ls = log --pretty=format:"%C(yellow)%h%Cred%d\\ %Creset%s%Cblue\\ [%cn]" --decorate | |
| fl = log -u | |
| cp = cherry-pick | |
| st = status -s |
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
| #Remove tag: | |
| git push origin :refs/tags/<tagname> | |
| #Replace tag to last commit: | |
| git tag -fa <tagname> | |
| #Git push tag: | |
| git push origin master --tags |
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
| folder="bin/classes/" | |
| package="$1" | |
| inotifywait -m -q -e close_write "$folder" | while read f; do | |
| # take only the filename | |
| f=`awk '{print $3}' <<< "$f"` | |
| # rebuild the full path | |
| path="$folder$f" |