When you allocate an object, its retain count begins at 1. Every time you retain, it goes up by one, and every time you release, it goes down by one. The other factor here is autorelease. When an object is autoreleased in the context of an autorelease pool, its retain count will automatically go down by one when the autorelease pool is drained.
In your examples, for the first one, name1 and newString1 will both be pointers to the same object, with that object's retain count staying the same. It would only go up if you explicitly call retain. Same with name2 and newString2. In the second example, you are allocating a new instance of an NSString object, so the new ones, anotherString1 and anotherString2 would have retain counts of 1. name1 and name2 would stay the same, again, because you didn't release or retain them.
Your second example is essentially the same as copy. While retain simply increments the retain count of an object, copy creates a new one one with its own retain count. The related thing to flag here is in your declaration of name1 and name2 as properties. If you set those properties, they will behave as I'm describing here with name1 retaining the NSString you set there and name2 copying it as a new object.
Another good overview of all this is here, with a link to an even more detailed discussion at the bottom.
This all being said, in OS X, you can use garbage collection, and on iOS 5, automatic reference counting. These can significantly reduce, if not eliminate, your need to worry about this stuff.