I have some basic git knowledge but I\'m not sure how to accomplish this.
I am trying to clone (?) github WordPress starter theme underscores. The idea is to create a ba
you could do something like
git clone https://github.com/Automattic/_s.git
create directory my_framework
with mkdir my_framework
(if on windows)
cd my_framework
git init
git remote add <_s>
git pull
(to get latest version of underscore)
again:
mkdir my_theme1
cd my_theme1
git init
git remote add
git pull
Hope this is what you are looking for!