[ Launch: INFO247 / Lab 5 / #1 ] 5009672 by seekshreyas[ Launch: lab5_1 ] 5001505 by poezn
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
| # reference url : http://stackoverflow.com/questions/1260748/how-do-i-remove-a-git-submodule | |
| # 1. Set path_to_submodule var (no trailing slash): | |
| path_to_submodule=path/to/submodule | |
| # 2. Delete the relevant line from the .gitmodules file: | |
| git config -f .gitmodules --remove-section submodule.$path_to_submodule | |
| # 3. Delete the relevant section from .git/config | |
| git config -f .git/config --remove-section submodule.$path_to_submodule |
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
| # Shell command that finds and delete all .svn files | |
| find . -type d -name ".svn" -exec sudo rm -Rf {} \; |
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
| # Qt Mac Deployment Script | |
| # --------------------------- | |
| # Generate Build By : | |
| $ QtSDK/Desktop/Qt/474/gcc/bin/macdeployqt MyApp.app | |
| # Verify Build By | |
| $ otool -L MyApp.app/Contents/MacOS/MyApp |
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"?> | |
| <!DOCTYPE cross-domain-policy SYSTEM "http://www.adobe.com/xml/dtds/cross-domain-policy.dtd"> | |
| <cross-domain-policy> | |
| <site-control permitted-cross-domain-policies="all"/> | |
| <allow-access-from domain="*" /> |
NewerOlder