
git
david840316
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
git配置别名
有没有经常敲错命令?比如git status?status这个单词真心不好记。 如果敲git st就表示git status那就简单多了,当然这种偷懒的办法我们是极力赞成的。 我们只需要敲一行命令,告诉Git,以后st就表示status: $ git config --global alias.st status 好了,现在敲git st看看效果。 当然还有别的命令转载 2016-08-24 11:25:35 · 249 阅读 · 0 评论 -
git 设置别名
有没有经常敲错命令?比如git status?status这个单词真心不好记。 如果敲git st就表示git status那就简单多了,当然这种偷懒的办法我们是极力赞成的。 我们只需要敲一行命令,告诉Git,以后st就表示status: $ git config --global alias.st status 好了,现在敲git st看看效果。 当然还有别的命令转载 2017-04-24 16:15:03 · 431 阅读 · 0 评论