AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
# Git命令自动补全 1. 下载git-completion.bash 并放到home 目录下: ~~~ruby curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash ~~~ 2. 将如下行放到.bash\_profile.sh 文件中 ~~~bash if [ -f ~/.git-completion.bash ]; then . ~/.git-completion.bash fi ~~~ 3. 生效配置 ~~~bash source ~/.bash_profile ~~~ 4. 使用的时候按TAB键进行自动补全命令或提示 [Git](https://www.jianshu.com/nb/29592446)