git进阶

1、git fsck --lost-found | grep commit(找到本地提交丢失的文件)    git fsck --help

2、git-svn 后不能创建模型
      ls script/ -l --------------------------------------查看文件属性(成灰色)
      chmod +x script/*-----------------------------修改script为可执行文件
      ls script/ -l--------------------------------------再次查看属性(成绿色)

3、双精度在rails脚本中为:decimal

4、#页面调用枚举值
    select:
    f.select :agree Enum.sf
    radio:
    f.radio_enum :xingbie, 'sex'
    #页面调用2(字段名与枚举类型名相同)
    select:
    f.select :aim
    radio:
    f.radio_enum :sex
   
    #查看页面调用
    @call.agree_enum_sf
    #查看页面调用(字段名与枚举类型名相同)
    @call.aim_enum

5、ps -A | grep mongrel  ps aux | grep mongrel;ps aux | grep mem(缓存)

6、gem list | grep cucu 查看cucumber是哪个版本

7、mongrel_rails start -e production --prefix=/zbs -d (将development库换成production)

8、本来某些字段不必填,但是在一定情况下才去校验时,在*.rb文件中加validates_presence_of :ways, :fill, :if => Proc.new{|c| c.isrequest == 1}

9、Git add -i ----------------------------------------------------------------------有选择性的上传文件
    通过git status查看想要上传的文件有没有上传

 

你可能感兴趣的:(SVN,git,F#,脚本,Rails)