Explore >> Select a destination


You are here

andre.arko.net
| | www.erikschierboom.com
3.6 parsecs away

Travel
| | Introduction When using git, local branches can track remote branches that no longer exist (the remote branch is gone). To identify these branches, we first have to cleanup (prune) the remote's branches: $ git fetch -p From https://test.com - [deleted] (none) -> origin/disable-feature-x - [deleted] (none) -> origin/fix-typo - [deleted] (none) -> origin/grammar-fix In this case, three remote branches were deleted. Let's see if we have local branches that are tracking deleted branches:
| | betterdev.blog
2.2 parsecs away

Travel
| | No upstream branch error from Git push command may seem strange. Here I explain it and show how to simplify first branch push to avoid it.
| | sookocheff.com
3.9 parsecs away

Travel
| | This is something I often do but rarely remember the steps for. This post is intended to serve as a reminder for me and anyone else having the same question: how to add an upstream remote git repository. Start by forking the repository you are contributing to and cloning that repository to your local file system. In this example, we will use the Elasticsearch repository and assume you have cloned it locally.
| | mtyurt.net
12.7 parsecs away

Travel
| In this blogpost, I will explain how to keep git history clean with advanced rebase features. You can watch my video explaining these concepts with demo.