[alias]
st = status
aa = add .
ca = "!git add . && git commit"
c = commit
cm = commit -m
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
git config --global alias.cleanup-local-dry '!f() { \ | |
current=$(git symbolic-ref --short HEAD); \ | |
git branch --format="%(refname:short)" | \ | |
grep -E "^(feature/|fix/|bugfix/)" | \ | |
grep -v "^$current\$" | \ | |
xargs -r -n 1 echo "Would delete branch:"; \ | |
}; f' |
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
git fetch -p | |
for branch in $(git branch --format='%(refname:short)' | grep -v 'develop'); do | |
remote_branch=$(git for-each-ref --format='%(upstream:short)' refs/heads/$branch) | |
if [ -n "$remote_branch" ] && ! git show-ref --quiet "refs/remotes/$remote_branch"; then | |
git branch -d "$branch" | |
fi | |
done |
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
# This job is right below "publish_results" | |
comment_on_jira: | |
name: "Comment on Jira" | |
if: github.event.action == 'opened' | |
needs: [linting, unit_test, end_to_end_test, deploy_pr_frontend, deploy_storybook, plan_staging, plan_prod] | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Login to JIRA" |
Here are the steps:
- Copy the Youtube video's link into VLC's "Open Network Stream" option (Media > Open Network Stream)
- Click Tools > Media Information
- Copy the "Location" text at the bottom and paste it into the browser
- Right-click the video in the browser and select "Save video as"
- Convert the downloaded video into .mp3 using FFmpeg: link
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
[filter "lfs"] | |
clean = git-lfs clean -- %f | |
smudge = git-lfs smudge -- %f | |
required = true | |
[user] | |
name = Binh Nguyen | |
[user] | |
email = [email protected] | |
[winUpdater] | |
recentlySeenVersion = 2.25.0.windows.1 |
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
[ | |
{ | |
"metadata": { | |
"id": "464f4ac7-af65-4aa9-9907-4ba7fa419085", | |
"publisherId": "bungcip.better-toml", | |
"publisherDisplayName": "bungcip" | |
}, | |
"name": "better-toml", | |
"publisher": "bungcip", | |
"version": "0.3.2" |
NewerOlder