Git
Branching, rebasing, stashing, and recovering from the worst.
Featured in Git
Articles in Git
18Change Git Origin Remote URL
Learn how to change the remote url of a local git-enabled directory using the git-remote command and Warp's workflow feature.
Amend a Git Commit
Making changes to a previous commit
How To Create a Git Repository
Creating repos in various scenarios with git
Delete Local Git Branch
Learn how to delete local branches from your git repository, including ones with unmerged changes, as well as local remote-tracking branches.
Git Push Tags
This post will show you how to push a single tag, multiple tags, all tags, and tags with commits.
Undoing Git Commits
Explore ways to undo a commit, including git reset, git checkout, and git revert with git while preserving commit history.
Undo a Git Merge
How to rollback the changes introduced by a merge in Git by adding new opposite commits using git-revert and effectively removing commits using git-reset.
Undo A Git Pull
How to effectively remove the commits introduced by a pull in Git using git-reset and preserve your local changes using git-stash. Also, how to cancel an unmerged pull request on GitHub.