0

I'm a newbie, so this question might sound really stupid, but what's the command to pull from Git Hub using Git Shell on Windows? Thanks a lot. I did some research but I don't really understand.

This is what I typed in Git Shell:

git pull github.com/A/B.git
Anshul Goyal
  • 73,278
  • 37
  • 149
  • 186
HoneyWine
  • 177
  • 1
  • 4
  • 18

1 Answers1

2

Do a git clone https://github.com/user/repo.git, and then you can do a git pull from within the repo on subsequent runs.

Basically, before doing a pull, the repo has to exist locally and hence you must clone it first.

Anshul Goyal
  • 73,278
  • 37
  • 149
  • 186
  • @user3896999 In future, if you have specific error messages, ask them as part of the question itself, instead of seeking clarifications later. You can go through the [FAQ](http://stackoverflow.com/tour) to understand how question and answers on SO work. – Anshul Goyal Jul 31 '14 at 19:37