ニュース

How to undo a staged Git file The proper way to undo the git add command is to use git restore. This will unstage your files, essentially undoing any previously issued git add commands.
Stash is the git shelve equivalent Again, there is no shelve command in Git. If a developer feels compelled to create one, they can always add an alias that triggers the stash command. However, I feel ...