If you have one object (A) that contains a reference to one or more other objects ({B}), a shallow copy of A is another object that contains a reference to the same {B}. In this case there exists only one copy of {B}.
A deep copy on the other hand is a copy of A that contains a reference to a copy of {B}. In this case there exists two copies of {B}.