0
votes

I'm working on understanding the basic concepts of git.

I've already set up and cloned a remote repository. I'm following a tutorial. My problem is that I don't understand the difference between:

origin/main and origin/master

On the tutorial, it appears origin/master when he types git status on the terminal. On my terminal, it appears:

On branch main

Your branch is up to date with 'origin/main'

I'd like to understand why I'm get origin/main and not origin/master.

1

1 Answers

0
votes

it was called master in the past. Now people use main instead. Basically the same.