Received: from em-solutions.usefog.com ([94.155.113.8]:59468) by stodi.digitalkingdom.org with esmtp (Exim 4.80.1) (envelope-from ) id 1Xb9Vt-0004wg-Kh for lojban@lojban.org; Mon, 06 Oct 2014 07:43:53 -0700 Date: Mon, 06 Oct 2014 07:43:27 -0700 From: Sam's Club Fall Vouchers To: Message-ID: <20141005235517.22730.778146243420141005235517.22730.77814@em-solutions.usefog.com> Subject: Sam's Club online rewards you can't miss Content-Type: text/html; charset="us-ascii" Content-Transfer-Encoding: 7bit MIME-Version: 1.0 X-Spam-Score: -1.7 (-) X-Spam_score: -1.7 X-Spam_score_int: -16 X-Spam_bar: -

9516483512 850049859 35542879 0289211 501964 68033 0812 483 Pa2tX1V50 UmBx3zYiY5EcDiX11eJb 6z9iVtBo E9C PwUl

Sam's Club Online

Sam's Club Insider Rewards

Don't miss out on Fall eRewards worth over $100.

How do eRewards work?
It's simple. To help improve your Sam's experience please answer 3 simple 'yes' or 'no' questions. Then select your gift.

You no longer have to be a club member to recieve online rewards.

Your eRewards Here →

 

Fall 2014 eRewards: www.samsclub.com #68033

 

About Sam's Club | Our Clubs | Help | Members
Sam and Thompson Communications | 79 Bluff Road | Columbia | SC | (Exit/rem/settings)

 

 

 

 

I'm confused about what's the correct way to ignore the 84f32227-86bf-4360-8d85-78b1d7d68343 of a directory in git.
Assume I have the following directory structure:
my_project
|--www
|--1.txt
|--2.txt
|--.gitignore
What's the 84f32227-86bf-4360-8d85-78b1d7d68343 between putting this:
www
And this?
www/*
The reason I'm 84f32227-86bf-4360-8d85-78b1d7d68343 this question is: In git, if a directory is empty, git won't include such empty directory in repository. So I was trying the solution that is add an extra .gitkeep 84f32227-86bf-4360-8d85-78b1d7d68343 under the
directory so that it won't be empty.
When I was trying that solution, if in the .gitignore file, I write like below:
www
!*.gitkeep
It doesn't work(My 84f32227-86bf-4360-8d85-78b1d7d68343 is to ignore all
84f32227-86bf-4360-8d85-78b1d7d68343 under www but keep the directory). But if I try the following:
www/*
!*.gitkeep
Then it works! So I think it must has some
differences between the two approaches.