733 B
733 B
title, type, language, tags, author, cover, dateModified
| title | type | language | tags | author | cover | dateModified | |
|---|---|---|---|---|---|---|---|
| View current status | snippet | git |
|
chalarangelo | periscope | 2021-04-13T21:10:59+03:00 |
Prints the current status of the working tree.
- Use
git statusto view the current status of the working tree. - You can optionally add the
-sbflag to view the short form of the same output
git status [-sb]
git status
# On branch patch-1
# Your branch is up to date with 'origin/patch-1'.
#
# Untracked files:
# (use "git add <file>..." to include in what will be committed)
# 30-seconds.txt
#
# nothing added to commit but untracked files present (use "git add" to track)
git status -sb
# ## patch-1...origin/patch-1
# ?? 30-seconds.txt