We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
把经常使用的名称配置一个别名,可以有效提高工作效率,如 checkout 配置别名 ck, 配置成功后可使用 git ck 命令替代 git checkout
git config --global alias.ck checkout git config --global alias.br branch git config --global alias.st status git config --global alias.cm commit git config --global alias.pl pull git config --global alias.ps push
git config --global core.quotepath off
The text was updated successfully, but these errors were encountered:
No branches or pull requests
git 使用技巧
1. git 别名配置,提高效率
把经常使用的名称配置一个别名,可以有效提高工作效率,如 checkout 配置别名 ck, 配置成功后可使用 git ck 命令替代 git checkout
2. git 命令行工具在正常不显示中文,可以通过
git config --global core.quotepath off
解决The text was updated successfully, but these errors were encountered: