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...
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...
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...
• Can be used to specify notifications for certain people or teams. (---) (---) • Can be used with a path that will notify the...
Doesn't actually clean yet, just tells you what would be cleaned: git clean -n For real, delete any files not committed to your repository git...
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...
Here's a good online tutorial for learning GIT
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...
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...
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...