git pull runs git fetchwith the given parameters andthen depending on configuration options or command line flags, will call either git rebase or git merge to reconcile diverging branches.
Show what revision and author last modified each line of a file. Annotates each line in the given file with information from the revision which last modified the line.
gitcheckoutmain# Switch to the main branch.gitpull# Fetch from and integrate with origin repository.gitcheckout-binfra/pipeline-14# Create a branch.gitbranch-minfra/pipeline-14infra/pipeline-15# Rename a branch.gitstatus# Which branch am I currently working on?gitcommit-a-m'Update mypy config'--dry-run# Commit all changed files. Show what would be committed.gitcommit-a-m'Update mypy config'# Commit.gitcommit-i.gitignore-m'Update .gitignore'--dry-run# Commit specified file only. Show what would be committed.gitcommit-i.gitignore-m'Update .gitignore'# Commit.gitpush--set-upstreamorigininfra/pipeline-14# For the first time.gitpush# In subsequent times.