You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If there are staged changes, it requires the user to write the commit message. There might not be enough time to do so.
What we need is git commit -am fire. The switch -a adds all changes in tracked files, switch -m fire sets the commit message to "fire", which is of a low quality, but if is justified by the emergency. The un-tracked files are ignored.
P.S: I understand it's a meme, but it might save your work! Besides I think displaying it, points out the importance and benefits of version tracking.
The text was updated successfully, but these errors were encountered:
The command
git commit
is not enough.What we need is
git commit -am fire
. The switch-a
adds all changes in tracked files, switch-m fire
sets the commit message to "fire", which is of a low quality, but if is justified by the emergency. The un-tracked files are ignored.P.S: I understand it's a meme, but it might save your work! Besides I think displaying it, points out the importance and benefits of version tracking.
The text was updated successfully, but these errors were encountered: