yaox023
yaox023's blog

yaox023's blog

Follow
Follow
homenewsletter
Tag

Git

#git

More content

Read more stories on Hashnode


Articles with this tag

Add pre commit check

Mar 14, 20233 min read

I often find myself checking the same thing before making a commit. So it is a nice thing if the computer could run the checking for me. I know we can...

Add pre commit check

Rewrite Git History with Rebase

Oct 25, 20226 min read

I discussed why and how to use git rebase instead of git merge in one of my previous article. Actually, the git rebase command has a interactive mode,...

Rewrite Git History with Rebase

Rebasing instead of Merging

Oct 7, 20223 min read

When we develop with git, we usually make some changes in another branch and merge it back to the master branch later. But as you know, with git...

Rebasing instead of Merging