Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reverted from v. 5

...

  1. Create a folder in your local machine and navigate to it using your command line.
  2. Run the following commands.

    Code Block
    languagebash
    mkdir is-samples
    cd is-samples/
    git init
    git remote add -f origin https://github.com/wso2/product-is.git
    Code Block
    languagebash
    git config core.sparseCheckout true
  3. Navigate into the .git/info/ directory and list out the folders/files you want to check out using the echo command below.  

    Code Block
    languagebash
    cd .git
    cd info
    echo "modules/samples/" >> sparse-checkout
  4. Navigate out of .git/info directory and checkout the v5.1.0 tag to run the git pull command to update the empty repository with the remote one. 

    Code Block
    languagebash
    cd ..
    cd ..
    git checkoutpull -b v5.1.0 v5.1.0 origin master 

    You will find the directory downloaded onto your local folder.