Posts

Showing posts from September, 2021

Regex Lib

 https://regexlib.com/Search.aspx?k=password&AspxAutoDetectCookieSupport=1

Git cherry pick

git checkout <branch_where_you_want_new_commits> git fetch origin <branch_from_which_you_want_commits> git cherry-pick <commit-hash> Note: You can get the commit hashes from "git log" on the source branch