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
#Watch the remote braches to look the list that we are going to delete: | |
git branch -r | sed 's/origin\/\(.*\)/\1/g' | cut -c 3- | grep -E 'fix_*' //->fix_ is the word to filter | |
RESULT: | |
fix_01032022_2 | |
fix_01042022 | |
fix_01042022_1 | |
fix_01042022_2 | |
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
_.each($('#data-table').bootgrid().data('.rs.jquery.bootgrid').rows, function(row){ | |
}); |
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
if (typeof value === "undefined") { | |
// ... | |
} |