pwd
is "present working directory". Here's the situation.
pwd: /path/to/pwd/
git repository: /repo/path/.git/
I want to do a git pull from origin, but without changing my current directory.
To clarify just a little more in case I'm not clear enough, this is the result I want, but I want to do it with one command instead of having to change directories:
$ cd /repo/path
$ git pull origin master
$ cd -
^r
to run it repeatedly as needed, and without messing up the directory stack because I frequently usepushd
,popd
, andcd -
. – Eckhart