What is the best way to strengthen your knowledge? I think the best way is to talk about what you know, then collect feedback, correct, update, and repeat this cycle!
Monday, February 11, 2019
Git workflow to merge 2 branches
1. Switch to the branch you want to merge another branch
git checkout branch1
2. Execute merge command, here we are going to mcommandnch2 into branch1
git merge branch1
3. If conflict occures, manually resolve the conflict and add/stage the resolved files by executing
git add <file1 file2 ...>
4. Commit the merges.
git commit -m "message"
5. Push the changes.
git push origin branch1
Subscribe to:
Post Comments (Atom)
-
1. Download and install Views Data Export Module (https://www.drupal.org/project/views_data_export) If you are using composer to install ...
-
For example , consider if ADFS SSO giving additional parameters like first name, surname, job title, etc., so how we map these additiona...
-
There were occasions that we need to pull/push data from our Drupal site to/from Salesforce. Here I'm explaining the complete steps to d...
No comments:
Post a Comment