Matt's answer is the right one, and do please see that article about fermions and how they are handled in ITensor.
To provide some additional information, there is currently only one place in ITensor where fermions are handled automatically for you, and that is in the AutoMPO system. So if you input Hamiltonian terms which contain fermionic operators (such as C and Cdag for spinless fermions, or Cup, Cdagup, Cdn, Cdagdn for electrons) then the AutoMPO system will use special rewriting rules and insert Jordan-Wigner string for you. (In the Julia version of ITensor, you can also extend this system for custom physical site types.) So the resulting MPO will be guaranteed to be correct in terms of treating fermionic operators.
On the other hand, when working with an MPS such as the one obtained after a DMRG calculation, you must insert Jordan-Wigner string operators yourself when measuring fermionic correlation functions, such as between a c-dagger and c operator acting on spatially separated sites. We have an example of how to do this for spinless fermions in the C++ version linked here:
http://itensor.org/docs.cgi?vers=cppv3&page=formulas/spinless_correlator_mps
Hope that helps -
Miles