我有一个包含Ruby和PHP代码的仓库。
Github说我的仓库是74.8%PHP和25.2%Ruby
我不知道这怎么可能。当我比较项目中的两种语言时:
# Count how many files:
# Ruby
ls | grep ".*\.rb" | wc -l
# returns 10
#PHP
ls | grep ".*\.php" | wc -l
# returns 1
# Count how many lines, words, chars:
# Ruby
cat *.rb | wc
# returns 229, 812, 5303
# PHP
cat *.php | wc
# returns 102, 473, 2760
Ruby似乎总是有更多。
我想念什么吗?
这确实属于Github帮助网站/论坛。
—
DeadMG
@DeadMG如果它在Github的帮助站点/论坛上,我不会看到它。因此,我喜欢这个有趣的问题在这里的事实。
—
2012年