Git: How to Fix Your Last Commit Without Panic
We’ve all been there. You just made a commit, hit Enter, and then… “Wait, I forgot a file!” or “That…
Design – Plan – Write
We’ve all been there. You just made a commit, hit Enter, and then… “Wait, I forgot a file!” or “That…
When you open your code in Windows, and run git in WSL bash, you will have a big chance to…
The “fatal: refusing to merge unrelated histories” Git error occurs when two unrelated projects are merged (i.e., projects that are not aware of each…
Create a new repository, or reuse an existing one. Generating a new SSH key Open Git Bashpaste the text below, substituting…
$git config You can use it to configure the author’s name, email address, file formats and many more to be used with…
When you are using git, most probably you may used git merge or git rebase to combine two branches. Pretty…
First, you create your branch locally: git checkout -b <branch-name# Create a new branch and check it out The remote…