codecamp

21. Git 再谈结构

目的

添加另外的文件到我们的仓库。

现在添加 Rakefile

让我们添加 Rakefile 到我们的仓库。下面一个恰好。

#!/usr/bin/ruby -wKU

task :default => :run

task :run do
  require './lib/hello'
end

添加并提交更改。

$ git add Rakefile
$ git commit -m "Added a Rakefile."

现在你应当能够使用 Rake 来执行 hello 程序了。

$ rake
$ rake
Hello, World!
20. Git 移动文件
22. Git 内幕:.git 目录
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }