我有一个以下.bashrc
文件:
function lazygit() {
git add --all :/
git commit -a -m "$1"
git push
}
function bak() {
git pull
git add --all :/
git commit -a -m "backup: $1"
git push
}
但每当我拨打lazygit
或bak
命令时,我都会:
/home/bok/.bashrc: line 1: lias: command not found
Already up-to-date.
On branch master
Your branch is up-to-date with 'origin/master'.
nothing to commit, working directory clean
/home/bok/.bashrc: line 1: lias: command not found
Everything up-to-date
为什么我得到" lias:命令未找到"?
答案 0 :(得分:2)
打开/home/bok/.bashrc
并转到第1行。您会看到lias
并更改为alias
(可能会意外删除a
)。
完全关闭终端并重新打开。它现在应该可以正常工作。