Today, we are going to learn how to use git submodules on any kind of project.
We are going to git on an already open repo. We are going to learn 4 commands with git.
First of all clone a repo, we are going to clone ringsce repo for now.
git clone https://github.com/ringsce/west.git

Now, open the README.md:
open README.md


type this on README.md
## Site
MMO Sign up website
git add .
git commit -m "added Website for sign up
git push -u --force
After, these changes we can see on our git fork the changes already made.

For last, we are going to learn recursive:
mkdir test && cd test
git clone --recursive https://github.com/ringsce/west.git

Leave a Reply