move script folders to a correct place, some vim config changes, etc...
This commit is contained in:
parent
c360fc2339
commit
ffe452fe24
28 changed files with 380 additions and 360 deletions
14
.local/bin/scripts/gdt
Executable file
14
.local/bin/scripts/gdt
Executable file
|
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
|
||||
if [ ! -d .git ]; then
|
||||
echo "missing .git dir!"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Last commit: $(git log | grep 'Date' | cut -d ' ' -f 4- | head -1)"
|
||||
read -p "Date: " date
|
||||
|
||||
export GIT_AUTHOR_DATE="${date}"
|
||||
export GIT_COMMITTER_DATE="${date}"
|
||||
|
||||
git "$@"
|
||||
Loading…
Add table
Add a link
Reference in a new issue