#version-control
Read more stories on Hashnode
Articles with this tag
We can mark specific points on a repository's history by using a tag. Especially, it is useful to mark the release version. Create a tag $ git tag...
Git Log command is very useful to manage the version of the project. In order to check the commit history of the project, you can use the command. ...
Create the new branch $ git checkout -b [branch name] Modify a branch name $ git branch -m [original name] [new name] $ git branch -m ver1...