Skip to content

Commit 036db36

Browse files
committed
updated alias
1 parent c4a5a77 commit 036db36

File tree

3 files changed

+41
-3
lines changed

3 files changed

+41
-3
lines changed

alias.txt

+31-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#my aliases
1+
# start of my aliases
22

33
alias cl="clear"
44
alias dcstart="docker-compose up -d"
@@ -26,6 +26,8 @@ alias gpl="git pull"
2626
alias gmps="git push --recurse-submodules=on-demand"
2727
alias gmpl="git pull --recurse-submodules"
2828
alias gitclone="git clone"
29+
alias git-drop-commit="git_drop_commit"
30+
2931

3032
#machine aliases
3133
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
4143

4244
#my alias function
4345

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+
4473
killport () {
4574
PID=$(sudo lsof -t -i:$1)
4675
sudo kill -9 ${PID}
@@ -71,5 +100,4 @@ goto () {
71100
}
72101

73102

74-
# end of my alias
75-
103+
# end of my alias

installK3D.sh

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!bin/bash
2+
3+
curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash

removeK3D.sh

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!bin/bash
2+
3+
sudo rm /usr/local/bin/k3d
4+
5+
k3d cluster delete mycluster
6+
7+
docker system prune -a --volumes

0 commit comments

Comments
 (0)