In very abstract terms, the one and only time when you must be endian-aware and endian-specific is when you serialize data. This has a very precise meaning which is actually covered by the language standard in C++ to some extent:
Inside the main part of your program, data comes in variables of a certain type, written T x;. So far so portable; your program always does what you want and you don't need to know how x is represented internally. You know that the memory for x starts at &x and is sizeof(T) bytes long, but you don't know anything else. If you did want to find out, you would have to cast &x from T* to unsigned char*.
While casting pointers in general is forbidden (it's called "type punning"), this particular cast is expressly permitted by the standard. Casting to char-pointer is the only way you can serialize your data from an opaque type T into a stream of actual bytes. It is precisely at this moment that you must know about endianness (or more generally, representation), because you must know in which order the byte stream makes up the internal representation of T.
For integral types you can do without casting pointers, but the interface is still at the conversion from byte stream to value:
unsigned char buf[sizeof(unsigned int)];
unsigned int value;
buf[0] = value; buf[1] = value >> 8; buf[2] = value >> 16; /*...*/ // We chose an endianness!
value = buf[0] + (buf[1] << 8) + (buf[2] << 16) + ... ; // ditto
You will find the need to convert values into bytestreams and vice versa when using operations like read and write, usually associated to files, streams or sockets.
Note that for integral values we never need to know about the endianness of the program itself - we only need to know the endianness that is used by the byte stream!