Git commands are given in this format
'git pull' [options] [<repository> [<refspec>...]]
What is meant by the brackets? Are these optional statements?
Git commands are given in this format
'git pull' [options] [<repository> [<refspec>...]]
What is meant by the brackets? Are these optional statements?
Yes, those flags are optional, you can simply run:
git pull
and it will pull the latest from your current repo.
:)