GIT Make a change

Git is a version control system for software development. It tracks changes made to files and allows multiple developers to collaborate on a project by sharing and merging those changes. It is widely used by developers and organizations to manage their source code.

What is GIT?

git status

1

list new or modified files not yet committed

git diff

2

List down changes and conflicts

git add

3

add a file as it looks new to your next commit.

git add [file]

4

stages the file, ready for commit

git reset [file]

5

unstage file, keeping the file changes

git commit -m "[descriptive message]"

6

commit all staged files to versioned history

Thank You