google-code-export / calendardateselect

Automatically exported from code.google.com/p/calendardateselect
Other
0 stars 0 forks source link

Dangerous Typo in Wiki (Plugin Installation) #112

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
You state this for installation on pre-2.0 apps:

git clone git://github.com/timcharper/calendar_date_select.git
vendor/plugins/calendar_date_select && rm -rf .git

If you do that in the root of a Git hosted project, you will delete your
project's .git folder and loose versioning. Better:

git clone git://github.com/timcharper/calendar_date_select.git
vendor/plugins/calendar_date_select && rm -rf
vendor/plugins/calendar_date_select/.git

Original issue reported on code.google.com by sven.sch...@gmail.com on 3 Jun 2008 at 10:11

GoogleCodeExporter commented 9 years ago
Actually, I found the above on the homepage.

Original comment by sven.sch...@gmail.com on 3 Jun 2008 at 10:14

GoogleCodeExporter commented 9 years ago
Yikes, that was a dangerous typo.  I'd meant to do the latter, but was doing 
the documentation updates while 
running a 102 fever.  Yeah - I should have been in bed.  Now I really know that 
I wasn't coherent :)

Thanks,
Tim

Original comment by timchar...@gmail.com on 3 Jun 2008 at 3:11