Posts

Showing posts from June, 2020

Boot Order Issue Fix

Error :   System BootOrder not found. Initializing defaults. Creating boot entry "Boot001F" with label       "ubuntu" for file "\EFI\ubuntu\shimx64.efi"  Reset System Quick   Fix  : Press "f12" key. select one of the bootOption from available bootOptions. if it not work then try with selecting other bootOptions also. Fixing  :  Press "f2" key. goto "boot option" change the type as "UMFI" And disable "secure boot". move the correct boot select to top of the BootOption list. Now you all set. press "f6" and save chagers and restart. 

How To Commit My Current Changes To A Different Branch In Git

Push commits to another branch It's very simple. Suppose that you have made changes to your Branch A which resides on both place locally and remotely but you want to push these changes to Branch B which doesn't exist anywhere. Step-01: create and switch to the new branch B $ git checkout -b B Step-02: Add changes in the new local branch $ git add . //or specific file(s) Step-03: Commit the changes $ git commit -m "commit_message" Step-04: Push changes to the new branch B. The below command will create a new branch B as well remotely $ git push origin B Now, you can verify from bitbucket that the branch B will have one more commit than branch A. And when you will checkout the branch A these changes won't be there as these have been pushed into the branch B.