Start you Adobe Experience Manager cloud projects with a default repository and directly include maintained versions of some additional handy features.
-
Click
Repositoriesfrom Cloud Manager menu -
Click
Access Repo Info -
UsernameandPasswordare prompted and used for repository changes⚠️ NOTE: Generated access password will only display in plain text view at initial generation. Please copy it down elsewhere for later use.
-
Click
Repositoriesfrom Cloud Manager menu -
Click
Add Repositoryfrom Repositories screen -
Enter
aemcs-minimalas repository name, clickSave -
Click
...to expand action menu, clickCopy Repository URL
-
Open
Terminal(if using MacOS) or OpenCommand Prompt(if using Windows)Download content into a folder, type
git clone https://github.com/AdobeAEMXSC/minimal.git -
Navigate to downloaded content folder, type
cd minimal -
Add a new remote
adobeto new repo created in Cloud Manager, type the following inTerminalorCommand Promptgit remote add adobe ###YOUR COPIED REPOSITORY URL###⚠️ NOTE: Replace###YOUR COPIED REPOSITORY URL###with the copied repository URL from your AEM Program in Cloud Manager -
Push all the changes in remote
adobeas themainbranch in new repo created in AEM project in Cloud Manager, type the following inTerminalorCommand Promptgit push adobe main:main -
credentials, if prompted, can be obtained by following instructions from Repo Credential to AEM Program in Cloud Manager section
-
Click
Repositoriesfrom Cloud Manager menu -
Click
…associated withaemcs-minimal, the clickCopy Repository URL -
Open
Terminal(if using MacOS) or OpenCommand Prompt(if using Windows)Download
aemcs-minimalcontent into a folder, typegit clone ###YOUR COPIED REPOSITORY URL###⚠️ NOTE: Replace###YOUR COPIED REPOSITORY URL###with the copied repository URL from your AEM Program in Cloud Manager -
Navigate to downloaded content
aemcs-minimalfolder, typecd aemcs-minimal -
Remove all files and directories, type
git rm -rf . -
Clean all unstaged files, type
git clean -fxd -
Commit all changes to git, type
git commit -a -m "clean" -
Download latest content from
minimal, typegit clone https://github.com/AdobeAEMXSC/minimal.git -
Copy downloaded latest content from
minimalintoaemcs-minimal- If MacOS, type
cp -r minimal/* . cp minimal/.gitignore . cp minimal/.gitmodules .- If Windows, type
xcopy /S /I /E minimal . -
remove
minimalfolder, typerm -rf minimal -
Commit all new files to git, type
git add --all -
Commit all changes to git, type
git commit -am "updated aemcs-minimal" -
push all commits back to
aemcs-minimal, typegit push






