Git Branching & Checking out
What is branching? Branching mean we create a new line of commit history in a temporary working space. We do this to implement a feature to fix a big, and…
Succeed with Automated Testing and TDD
Git and all things Git
What is branching? Branching mean we create a new line of commit history in a temporary working space. We do this to implement a feature to fix a big, and…
Let’s begin with the most foundational part of learning Git, the open source tool universally used to write modern software: Merging vs. rebasing. When you are using git, the first…
• Can be used to specify notifications for certain people or teams. (—) (—) • Can be used with a path that will notify the listed code owners associated with…
Doesn’t actually clean yet, just tells you what would be cleaned: For real, delete any files not committed to your repository To remove directories, run To remove ignored files, run…
Here we will make two small changes to your shell to work with Git. These changes will: 1) Make your command prompt show you the current branch name, and 2)…
What you may miss off-the-bat is that Heroku’s copy of your app is actually a git repository. It’s like github’s repository of your code, but it is used for the…
I recently had to re-set my git repo, and after I did every time I did git pull or git push I was asked to re-enter my password. Turns out…
Create a file in your home directory here: ~/.gitconfig (The dot makes it invisible of course) In this file, you can configure lots of git stuff: [user] email = your-email@your-domain.com…