Explore >> Select a destination


You are here

blog.thms.uk
| | rick.cogley.info
6.1 parsecs away

Travel
| | It's possible to update a forked git repository using the Terminal or one of the many good GUIs for git, but did you know Github gives you a way to update a fork directly in its web interface?
| | www.epicweb.dev
12.9 parsecs away

Travel
| | Learn about the two underlying commands of Git Pull, Git Fetch and Git Merge, and how they are used to update your local and remote branches.
| | codeinthehole.com
15.7 parsecs away

Travel
| | Notes from an internal git workshop
| | www.brandonpugh.com
78.6 parsecs away

Travel
| If you've ever worked on a project with me then I've probably recommended at least one of these config settings in git. git config --global pull.rebase true - tells git to always pull with rebase instead of merge (the equivalent of pull --rebase). This not only saves you having to type the flag every time, but also ensures gui clients will also use rebase when pulling. Note: You should only enable this if you're comfortable with rebasing.