Skip to content

Instantly share code, notes, and snippets.

@antonagestam
Created May 7, 2020 07:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save antonagestam/4ef26dec9783edf6eb4fd1fdab1dd995 to your computer and use it in GitHub Desktop.
Save antonagestam/4ef26dec9783edf6eb4fd1fdab1dd995 to your computer and use it in GitHub Desktop.
Beginner-friendly improvements of git.
$ git checkout dev
Switched to branch 'dev'
Your branch is up to date with 'origin/dev'.

Suggest improving copy here to make it clear that the branch might or might not be up to date with the remote origin/dev. "Your branch is up to date with 'origin/dev'." only means we haven't committed any changes to dev since we last synced.

This has potential of making git easier to understand for beginners.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment