A simple guide to writing clear and structured Git commit messages using Conventional Commits.
(): | <label for="country">Country</label><span style="color: red !important; display: inline; float: none;">*</span> | |
| <select id="country" name="country" class="form-control"> | |
| <option value="Afghanistan">Afghanistan</option> | |
| <option value="Åland Islands">Åland Islands</option> | |
| <option value="Albania">Albania</option> | |
| <option value="Algeria">Algeria</option> | |
| <option value="American Samoa">American Samoa</option> | |
| <option value="Andorra">Andorra</option> | |
| <option value="Angola">Angola</option> |
| cd %APPDATA%\Microsoft\Windows\Start Menu\Programs\Startup |
| #![windows_subsystem = "windows"] |
| @echo off | |
| :: Check if the script is running as Administrator | |
| openfiles >nul 2>&1 | |
| if %errorlevel% neq 0 ( | |
| echo This script must be run as Administrator. | |
| echo Restarting the script as Administrator... | |
| powershell -Command "Start-Process cmd -ArgumentList '/c, \"%~f0\"' -Verb runAs" | |
| exit /b | |
| ) |
| shutdown /r /f /t 0 |
| rm -rf node_modules android/app/build android/build android/.cxx android/app/.cxx && npm install --legacy-peer-deps && cd android && ./gradlew generateCodegenArtifactsFromSchema |
| "scripts": { | |
| "clean:android": "cd android && ./gradlew clean && cd ..", | |
| "clean:ios": "cd ios && rm -rf build && xcodebuild clean && rm -rf ~/Library/Developer/Xcode/DerivedData && pod deintegrate && pod install && cd .." | |
| } |
| Filter | Description | Example |
|---|---|---|
| allintext | Searches for occurrences of all the keywords given. | allintext:"keyword" |
| intext | Searches for the occurrences of keywords all at once or one at a time. | intext:"keyword" |
| inurl | Searches for a URL matching one of the keywords. | inurl:"keyword" |
| allinurl | Searches for a URL matching all the keywords in the query. | allinurl:"keyword" |
| intitle | Searches for occurrences of keywords in title all or one. | intitle:"keyword" |
| Options -MultiViews | |
| RewriteEngine On | |
| # Don't rewrite if the file exists | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| # Don't rewrite if the directory exists | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| # Rewrite everything else to index.html | |
| RewriteRule ^ index.html [QSA,L] |