Posts by Alex Coelho • 21 points
2 posts
-
0
votes1
answer28
viewsA: Change --push-option with Hooks
To load a token into the push-option an option would be within your .gitconfig perform the following configuration: You can use that as a reference, this way the token will be dynamically loaded…
gitanswered Alex Coelho 21 -
2
votes3
answers64
viewsA: How to filter only numbers with 'Like' SQL
You can use the following query: SELECT * FROM lesson L WHERE L.mainUnitId like 'Ad[0-9]%'; Using a regular expression where after the characters Ad a numeric character (from 0 to 9) is found and…