Menu

com.adobe.cq.wcm.core.components.models,version=[12.29,13) -- Cannot be resolved

Check the core bundle and you will find this error.

  1. To fix this issue, you have to update the core compoennt version in project. Check the available version using depfinder and then change the version value in main pom.xml property core.wcm.components.version.
  2. Developer can also remove this dependency if they are using AEMaaCS.

How to get all remote in git

We can get all the remote names and respective url with below command. 

  1. Below is the command to get the list of all remote added in git. 

    git remote -a or git remote -all 


  2. Below is the command to get the list of all remote with thier origin/remote URL.

    git remote -v

How to add or remove remote from a Git repository

To add a git remote other than origin, run the following command.

git remote add origin-name gitUrl

 


To remove a remote from local repo

git remote remove origin-name


Note Here: 

gitUrl is the url of your git repo.  

origin-name default origin, but we could provide any unique name.