Changes between Version 7 and Version 8 of setup-git


Ignore:
Timestamp:
Jul 23, 2014, 3:58:52 AM (10 years ago)
Author:
jeremyb
Comment:

fix gitignore creation. a lot of this does not seem generally useful (to a wide spectrum of users). what is the goal of this page?

Legend:

Unmodified
Added
Removed
Modified
  • setup-git

    v7 v8  
    3232
    3333{{{
    34 echo "/wp-content/uploads
    35 }}}
    36  
    37 
    38 click enter
    39 
    40 Add
    41 {{{
     34cat <<EOF > .gitignore
     35/wp-content/uploads
    4236/wp-config.php
    43 }}}
    44 
    45 
    46 click enter
    47 
    48 add
    49 
    50 {{{
    51 " >> .gitignore
    52 }}}
    53 
    54 
    55 click enter
    56 
    57 Also add
    58 
    59 
    60 {{{
    61 echo ".htaccess" >> .gitignore
     37*~
     38/.htaccess
     39EOF
    6240}}}
    6341
     
    81594. Do the initial commit with the command
    8260
    83 
    8461{{{
    85 git commit -am"Initial Commit"
     62git commit -m 'Initial Commit'
    8663}}}
    8764