有时在我做了一次提交之后,我发现我遗漏了一个文件,这个文件也应该包含在提交中,但实际上没有。我经常再次承诺:
git add the_left_out_file
git commit "include the file which should be added in the last commit"
我认为这样做可能不是个好主意。我想只包含文件而不添加提交。就像这样,
git add the_left_out_file
git add_staged_files_to_previous_commit
这可能吗?