0 votes
by
Name a few Git commands and explain their usage.

1 Answer

0 votes
by

Command Function

git rm [file] deletes the file from your working directory and stages the deletion.

git log list the version history for the current branch.

git show [commit]  

shows the metadata and content changes of the specified commit.

git tag [commitID] 

used to give tags to the specified commit.

git checkout [branch name]

git checkout -b [branch name]

used to switch from one branch to another.

creates a new branch and also switches to it.

Related questions

0 votes
asked Aug 22, 2023 in Git by JackTerrance
+3 votes
asked May 29, 2019 in Machine Learning by param1987
...