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 +};