Explore >> Select a destination


You are here

thork.net
| | timmousk.com
14.2 parsecs away

Travel
| | This article explains how to reset a Git submodule and gives multiple methods (with code snippets) to achieve it.
| | rgoswami.me
14.8 parsecs away

Travel
| | A workflow for managing private submodules in a private repository without personal access tokens for Github actions Background Ever since Travis CI decided to drink corporate kool-aid, the search for a new CI has been brought to the fore again. Github Actions seem uniquely suited for private repositories, since most CIs bill for private repos. However, the basic authentication setup for the checkout action involves using one SSH key, effectively a personal access token, for both the main project and all submodules.
| | techtldr.com
16.6 parsecs away

Travel
| | Here are the steps that I too to merge multiple GitHub repos into one, while preserving all commit history. The process took about 30 minutes for 5 repos. As a result, I feel like my GitHub page is cleaner and code is actually better organized and easier to find. TLDR: Create new repo (or use [...]
| | jinyuz.dev
83.1 parsecs away

Travel
| There was a pull request on GitHub and it contains a feature I wanted to test. I didn't know how to test it locally. Should I just copy the changes to my local since the changes weren't that big? But what if it was? Luckily, I found some answers by googling and decided to write it up for future reference. Git provides a command for it and here is the sample syntax