#git
Read more stories on Hashnode
Articles with this tag
I’m using the erdaltsksn/blank as a Template for my open-source projects. When I make a commit in this repository, I need to apply the same commit to...
The first time I started to use Sublime Text, I love the ⌘ + p shortcut combination. I really change the way I switch between files. After GitHub, I...
GIT has a wonderful idea that is known as the staging area. The stage area is the place where you prepare the files that are going to be on your next...
You can add a tag to a previous commit in Git using the command git tag TAG_NAME COMMIT_HASH. However, this will update the tag's date, which can...
You may need to change the datetime of a commit in some situations. For example, some countries use daylight saving time period and because of it,...
Today I have a small disagreement with GIT and gitignore rules. When you add a file to a GIT repository, it is tracked by GIT. Then adding it to...