How can i pull a specific folder from origin (Remote repository) into my local master repository
unfortunately i deleted a src folder 开发者_开发知识库from my local master branch. Now i would like to pull or clone JUST the src file again from the origin. Is it possible to do that? When yes, how can i solve this issue...
Any suggestion is welcome...
Thanks in advance
This should do it:
git checkout src
精彩评论