August 2019
Beginner to intermediate
798 pages
17h 2m
English
The git status command shows the status of the working tree. If everything is in sync, git status will return an output similar to the following:
$ git status
On branch master
Your branch is up to date with 'origin/master'.
nothing to commit, working tree clean
If there are changes, the output of git status will look similar to the following:
On branch master
Your branch is up to date with 'origin/master'.
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: main.go
Untracked files:
(use "git add <file>..." to include in what will be committed)
newFile.go
no changes added to commit (use "git add" ...Read now
Unlock full access