Skip to content

pivotus/ror

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Bu şablondan yararlanarak örneğin foo adında yeni bir uygulama oluşturmak isterseniz:

  • Uygulama dizini oluşturarak şablon içeriğini al

    $ mkdir foo
    $ cd foo
    $ wget -qO- https://github.com/pivotus/ror/archive/master.tar.gz | tar --strip-components=1 -zxvf -
  • Uygulama ismini değiştir

    $ find . -not \( -name .git -prune \) -type f -readable -writable -exec sed -i "s/\bRor\b/Foo/g" {} \;
  • Depoyu ilkle

    $ git init
    $ git add .
    $ git commit -a -m .
  • Github'ta foo adında yeni bir depo oluştur

  • Github'a gönder

    $ git remote add origin https://github.com/pivotus/foo.git
    $ git push -u origin master