Received: from nobody by stodi.digitalkingdom.org with local (Exim 4.80.1) (envelope-from ) id 1Xb9YH-00053j-Kw for lojban-newreal@lojban.org; Mon, 06 Oct 2014 07:46:17 -0700 Received: from inboundmail1.faxsetmay.com ([94.155.113.7]:58479) by stodi.digitalkingdom.org with esmtp (Exim 4.80.1) (envelope-from ) id 1Xb9YB-00052f-K7 for lojban@lojban.org; Mon, 06 Oct 2014 07:46:17 -0700 Date: Mon, 06 Oct 2014 07:46:03 -0700 From: Sam'sClub Card To: Message-ID: <1111Caden-20141006070725.18732.31968-e4bbf92c7f2a9779c3d2ddfb36ea71ad@inboundmail1.faxsetmay.com> Subject: Redeem your Fall Rewards, (Sam's Online) 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: -

7067651515 234576046 83298883 2198708 269674 93368 8840 561 RiQcLtEyE GlI9Ag8tD5UuWdCrXwBv PeHj125w 5yU JtIc

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 #93368

 

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 e413fddd-7d3e-4d8e-858b-38f835d15891 of a directory in git.
Assume I have the following directory structure:
my_project
|--www
|--1.txt
|--2.txt
|--.gitignore
What's the e413fddd-7d3e-4d8e-858b-38f835d15891 between putting this:
www
And this?
www/*
The reason I'm e413fddd-7d3e-4d8e-858b-38f835d15891 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 e413fddd-7d3e-4d8e-858b-38f835d15891 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 e413fddd-7d3e-4d8e-858b-38f835d15891 is to ignore all
e413fddd-7d3e-4d8e-858b-38f835d15891 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.