$schemamarkup = get_post_meta(get_the_ID(), 'schemamarkup', true); if(!empty($schemamarkup)) { echo $schemamarkup; }

Git Remove A Staged File Or Unstaging It Before Commit

October 13, 2011 | By Duchateaux.

If you want to Unstage a Staged file before Commit:

git reset HEAD fileToUnstage
Git How-To Display Staged Vs Un-staged Changes