#git
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...
The Log command has options that you can filter the commit history, so it helps you to work on the project more efficiently with your team members....
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...
1. Git init $ git init 2. Working on projects 3. Check the status $ git status 4. Add files $ git add index.html // add index.html file $ git add...
To set your Git username and email globally, you can type this command line in your terminal. $ git config --global user.name "Grace Jeong" $ git...