Issue - Sync Project Git Repository to Adobe Git || Manual Way
Hello All,
What is the best way to Sync Project Git Repository to Adobe Git but the Manual Way?
I have been using below CMD commands but I have been facing issues (Unable to SYnc changes to Adobe GIT) -
1. Checkout project GIT repository (develop Branch)
2. Add "adobe" remotes :
git remote add adobe <repository_url>
3. Validate if the remotes have been added successfully :
git remote -v
4. Next, take the latest git pull from project git repository (develop Branch)
git pull origin develop
5. Finally, pushing the changes to the adobe git.
git push adobe develop
I get the success message but the changes have not been sync to Adobe GIT.
I even tried doing --force push to Adobe GIT, still the same issue.
Any help, would be appreciated!

