From 0a39da567f1bfa615bb79fe7d1e6ecbba13749f9 Mon Sep 17 00:00:00 2001 From: RalphClaude <64559790+RalphClaude@users.noreply.github.com> Date: Tue, 13 Oct 2020 00:30:04 -0400 Subject: [PATCH] Update git_commands-list.js hey just added a command. Hopefully people use it !!!! --- command-topics/git_commands-list.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/command-topics/git_commands-list.js b/command-topics/git_commands-list.js index 1f0cc6b..bccbfd3 100644 --- a/command-topics/git_commands-list.js +++ b/command-topics/git_commands-list.js @@ -14,5 +14,9 @@ export const GitCommandsList = { cmd: 'git commit -a | --all', desc: 'Tell the command to automatically stage files that have been modified and deleted, but new files you have not told Git about are not affected.' }, + { + cmd: 'git status', + desc: 'List the files you\'ve changed and those you still need to add or commit:' + } ] -}; \ No newline at end of file +};