git checkout: what does this weird output mean? -
when checkout, get:
me@localhost# git checkout master d deps/example m deps/example2 switched branch "master"
the man page doesn't mention cryptic output. mean?
that's output of git status
; git showing after checking out master
there still uncommited changes working copy (one modified file , 1 deleted file).
check man git-status
:
m = modified = added d = deleted r = renamed c = copied u = updated unmerged
Comments
Post a Comment