Remix.run Logo
orthoxerox 3 hours ago

I had to make an alias for rebasing, because I kept doing the opposite:

    git checkout master #check out the branch to apply commits to
    git rebase mybranch #Apply all commits from mybranch
Now I just write

    rebase-current-branch
and it does what I want: fetches origin/master and rebases my working branch on top of it.

But "ours"/"theirs" still keeps tripping me up.

cerved an hour ago | parent [-]

Tip, you may want to use origin/HEAD over origin/master

orthoxerox an hour ago | parent [-]

Is it the naming-independent identifier of the tip of the trunk?