Orther notes: Git, GitKraken in commands.
Ctrl + P > Type "History" > Enter the file path.
If you wanna "merge" (rebase style) branch_1 to branch_2, just drag and drop branch_2 to branch_1 and choose the option "Rebase branch_2 onto branch_1". It will merge commits from branch_1 to branch_2 step by step and put the "new" commit on branch_2 onto the top of merged commits from branch_1.
branch_1: A -- B -- C -- D -- E
branch_2: A -- F -- G -- H
# After rebasing (branch_2 onto branch_1)
branch_1: unchanges
branch_2: A -- B -- C -- D -- E -- F -- G -- H
<aside> ☝ Best practice: Create and sign in with a Gitkraken account. Don't worry if you have use the option "sign in with Google", you can create with that email too. After sign in via email (not via google), you can create and connect different profiles with different github accounts.
</aside>
Suppose that we work with [email protected] (personal) and [email protected] (working). There are personal repos and working repos.
If problems? In case you cannot integrate automatically to different Github accounts in the same session of Gitkraken.