Skip to content

Commit 597c999

Browse files
authored
Merge branch 'main' into feature/git-remove-local-branches
2 parents d577c7e + 2925152 commit 597c999

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
name: Remove all stopped docker container, image and volumes
3+
command: docker system prune --all -f && docker volume prune -f
4+
tags:
5+
- docker
6+
description: "Remove all stopped docker containers, images, and volumes. Be careful when doing this action, all local images & volumes will be removed and can't be reverted"
7+
arguments: []
8+
source_url: "https://docs.docker.com/engine/reference/commandline/system_prune/"
9+
author: Khanh Chau
10+
author_url: "https://github.com/khanhx"
11+
shells: []

specs/git/update_git_username.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
name: Change username of git
3+
command: "git config --global user.name '{{username}}'"
4+
tags:
5+
- git
6+
description: Sets the username for git
7+
arguments:
8+
- name: username
9+
description: The new username git should use
10+
default_value: ~
11+
source_url: "https://stackoverflow.com/questions/22844806/how-to-change-my-git-username-in-terminal"
12+
author: Orils
13+
author_url: "https://stackoverflow.com/users/2817112/oriol"
14+
shells: []

0 commit comments

Comments
 (0)