Start you Adobe Experience Manager cloud projects with a default repository and directly include maintained versions of some additional handy features.
-
Click
Repositories
from Cloud Manager menu -
Click
Access Repo Info
-
Username
andPassword
are 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
Repositories
from Cloud Manager menu -
Click
Add Repository
from Repositories screen -
Enter
aemcs-minimal
as 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
adobe
to new repo created in Cloud Manager, type the following inTerminal
orCommand Prompt
git 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
adobe
as themain
branch in new repo created in AEM project in Cloud Manager, type the following inTerminal
orCommand Prompt
git push adobe main:main
-
credentials, if prompted, can be obtained by following instructions from Repo Credential to AEM Program in Cloud Manager section
-
Click
Repositories
from Cloud Manager menu -
Click
…
associated withaemcs-minimal
, the clickCopy Repository URL
-
Open
Terminal
(if using MacOS) or OpenCommand Prompt
(if using Windows)Download
aemcs-minimal
content 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-minimal
folder, 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
minimal
intoaemcs-minimal
- If MacOS, type
cp -r minimal/* . cp minimal/.gitignore . cp minimal/.gitmodules .
- If Windows, type
xcopy /S /I /E minimal .
-
remove
minimal
folder, 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