File tree 3 files changed +41
-3
lines changed
3 files changed +41
-3
lines changed Original file line number Diff line number Diff line change 1
- #my aliases
1
+ # start of my aliases
2
2
3
3
alias cl="clear"
4
4
alias dcstart="docker-compose up -d"
@@ -26,6 +26,8 @@ alias gpl="git pull"
26
26
alias gmps="git push --recurse-submodules=on-demand"
27
27
alias gmpl="git pull --recurse-submodules"
28
28
alias gitclone="git clone"
29
+ alias git-drop-commit="git_drop_commit"
30
+
29
31
30
32
#machine aliases
31
33
alias updateMachine="sudo apt update -y && sudo apt upgrade -y && sudo apt full-upgrade -y"
@@ -41,6 +43,33 @@ alias changeJavaVersionTo='bash ~/workspace/environment-setup/changeJavaVersionT
41
43
42
44
#my alias function
43
45
46
+ git_drop_commit() {
47
+ if [ -z "$1" ]; then
48
+ echo "Usage: git drop-commit <commit-hash-or-prefix>"
49
+ return 1
50
+ fi
51
+
52
+ local commit_hash="$1"
53
+
54
+ # Check if the commit exists
55
+ if ! git rev-parse --verify "$commit_hash" &>/dev/null; then
56
+ echo "Error: Commit '$commit_hash' not found."
57
+ return 1
58
+ fi
59
+
60
+ echo "Dropping commit: $commit_hash"
61
+
62
+ # Start rebase and drop the commit
63
+ git rebase --onto "$commit_hash"^ "$commit_hash"
64
+
65
+ if [ $? -eq 0 ]; then
66
+ echo "Commit $commit_hash successfully dropped."
67
+ else
68
+ echo "Rebase failed. Please resolve conflicts and continue."
69
+ return 1
70
+ fi
71
+ }
72
+
44
73
killport () {
45
74
PID=$(sudo lsof -t -i:$1)
46
75
sudo kill -9 ${PID}
@@ -71,5 +100,4 @@ goto () {
71
100
}
72
101
73
102
74
- # end of my alias
75
-
103
+ # end of my alias
Original file line number Diff line number Diff line change
1
+ #! bin/bash
2
+
3
+ curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
Original file line number Diff line number Diff line change
1
+ #! bin/bash
2
+
3
+ sudo rm /usr/local/bin/k3d
4
+
5
+ k3d cluster delete mycluster
6
+
7
+ docker system prune -a --volumes
You can’t perform that action at this time.
0 commit comments