culTest

    One of the 100 questions in this topic

    How much do you know about Git and Version Control?

    Which command is used to save changes in the stash?

    Answers

    git save
    git store
    git stashCorrect
    git keep

    The git stash command temporarily saves uncommitted changes from both the staging area and the working directory in a stash. The changes are removed from the working directory and can later be restored with git stash apply or git stash pop.