when i tried to perform a pull on a remote from Git EXT it says it
starts but it does not actually do anything, nor does it stop on its
own. eventually you have to abort. it does not prompt me for my
remote credentials either, the way Git GUI does.
--
|˃˄˅|
In your pull issue I would pop open the git bash and do "GIT PULL
remote". The console tends to give you more verbose progress updates
and errors if there are any.
No, the stash is this feature:
http://ariejan.net/2008/04/23/git-using-the-stash/
The stash basically creates a temporary work-in-progress commit while
you go work on something else. Staging, on the other hand, is when you
use the commit dialog to select which changes actually get included in
the new commit. The selected changes are "staged".
-William