72.0k views
5 votes
Git is useful for creating snapshots of your work. If you realize halfway through that you've messed up, it's much easier to reset.

a) True
b) False

1 Answer

5 votes

Final answer:

The statement about Git being helpful for creating snapshots and allowing resets when mistakes are made is true. Git's 'commit' feature is essential for version control in software development.

Step-by-step explanation:

Git is indeed useful for creating snapshots of your work, and the statement you've made about Git is true. Git offers a feature called 'commit' which creates a snapshot of your files at a point in time. This can be incredibly handy when you need to track changes or revert to a previous state of your project. If you realize you've made a mistake, Git allows you to use commands like 'git reset' to undo changes and return to a previous commit without losing all your work. It's a valuable tool for version control and collaboration in software development.

User Gdaras
by
7.8k points