You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# 执行以下命令后
git config --global alias.st status
git config --global alias.ci 'commit -m'# 我们不需要使用
git status
git commit -m '<提交信息>'# 只需要使用
git st
git ci '<提交信息>'
方法二,直接修改 git 的配置文件.gitconfig
# 编辑.gitconfig文件
vim ~/.gitconfig
# 将
[alias]
# 改为
[alias]
st = status
ci = commit -m
# 并保存退出后# 我们不需要使用
git status
git commit -m '<提交信息>'# 只需要使用
git st
git ci '<提交信息>'