https://github.com/dideler/tools
Sometimes Git + GitHub is the package manager we need, but not the one we deserve
https://github.com/dideler/tools
Last synced: 5 months ago
JSON representation
Sometimes Git + GitHub is the package manager we need, but not the one we deserve
- Host: GitHub
- URL: https://github.com/dideler/tools
- Owner: dideler
- Created: 2014-12-11T02:08:27.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2015-12-31T16:13:22.000Z (over 10 years ago)
- Last Synced: 2023-03-12T03:52:45.543Z (over 3 years ago)
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This repo is a personal collection of projects that I build and use, but do not
necessarily contribute to.
I'm using Git + GitHub as a package manager more or less. Either because some of
these projects are not available pre-packaged via a package manager or the
available versions are outdated.
Commits like `Update submodule` are personal reminders for when
I last updated *and* built the project. I try to mention the version I
last built in the commit message body.
---
- Clone this repository with `git clone --recursive` to pull in the submodule data
- Adding a shallow submodules: `git submodule add --depth=1 `
- Repos need to be unshallowed if pushing to Heroku: `git fetch --unshallow`
- Updating submodules: `git submodule foreach git pull --rebase`
- Removing a submodule: `git rm -f && rm -rf .git/modules/`