on softwarecarpentry they say that it is a bad idea to enter the following command sequence:
cd             # return to home directory
mkdir planets  # make a new directory planets
cd planets     # go into planets
git init       # make the planets directory a Git repository
mkdir moons    # make a sub-directory planets/moons
cd moons       # go into planets/moons
git init       # make the moons sub-directory a Git 
Why is it a bad idea.
 
     
     
    