Quantcast
Channel: Mac OS X – Verdana Experiments
Browsing latest articles
Browse All 3 View Live

Image may be NSFW.
Clik here to view.

在 Shell 提示符中显示 Git 分支名称

Git 的好处之一就是把代码的分支管理变成了一件极其便捷的事情,分支只保留差异,不用复制任何文件,不用连接网络,快速创建,用完即删。Git 分支与项目的复杂程度无关,不管你的项目多么复杂,创建 Git 分支永远都是瞬间的事情。同时,因为保留了父类分支的信息,所以分支的合并也变得异常简单。 当在一个项目中频繁使用多个分支时,可以使用 git status...

View Article


让 Bash 自动完成忽略大小写

大多数人在使用 Bash 时,都会对其进行改造,因为默认的设置真的好难用~ 参考以下 ~/.inputrc 设置: 1 2 3 4 5 6 7 8 9 # do not show hidden files in the list set match-hidden-files off   # auto complete ignoring case set show-all-if-ambiguous...

View Article


透过 GoAgent 访问 GitHub 仓库

GitHub 被墙了,烦!虽然可以通过代理继续上,不过那种感觉就好像吃了苍蝇,恶心。 简单说一下如何透过 GoAgent 访问 GitHub仓库。 首先如果你的代码仓库使用的 git:// 协议,需要转成 https:// 协议。 git remote rm origin git remote add origin https://github.com/sample/sample.git 为 git...

View Article
Browsing latest articles
Browse All 3 View Live