Etc. Command
View Help
You can examine the functions of each command and option using the help command
# View all commands provided by Git
$ git help -all# View all options available for a specific command
$ git [command] -help
Setup and Initialization
Initialize a Repository or clone an existing Repository
# Create a Git repository based on the current directory
$ git init# Clone a remote Repository to a local Repository through URL
$ git clone [url]
Stage & Commit
You can commit using the stage area
Comparison and Inspection
You can inspect logs and changes
Share and Update
You can search for updates in a specific Repository and update the local Repository
History Modification
You can modify branches or commits or delete commit history
Temporary Storage
You can temporarily store modified or tracked files to switch branches
Last updated