I have a local repo with 2 branches master and develop .
- In the
develop branch, I have all my main Drupal 8 code - In my
master branch I have 1 commit (Initial commit)
In my remote repo, I have all my main Drupal 8 code in the develop branch. How to get this code in the remote main branch? How do I combine these repos?
Update:
When I do git status , I get:
On branch master Your branch is up-to-date with 'origin/master'. Untracked files: (use "git add <file>..." to include in what will be committed) griffioenrotterdam.sublime-project griffioenrotterdam.sublime-workspace sites/ nothing added to commit but untracked files present (use "git add" to track)
What should I do?
Update 2:
When I do git checkout develop , I get:
error: The following untracked working tree files would be overwritten by checkout: sites/default/default.services.yml sites/default/default.settings.php Please move or remove them before you can switch branches. Aborting
What should I do?
git merge
meez
source share