-
Notifications
You must be signed in to change notification settings - Fork 68
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Submodule maybe? #1
Comments
As it is, it should be relatively easy to pull them all; just copy and paste them into a list and use xargs with Wouldn't submoduling them mean I would need to keep updating this repo? I don't want to do that more than I have to. |
I use the following script for updating repos in the same directory where the script is stored. Hope it will help, but you need to clone them manually first #!/bin/bash
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
for i in $(ls); do
if [ -d "$DIR/$i/.git" ]
then
cd "$DIR/$i"
BRANCH="$(git symbolic-ref --short -q HEAD)"
git pull origin $BRANCH
cd ..
fi
done |
@ewnd9 Thanks a ton! That's nice of you! @RichardLitt First of all, I appreciate your time to put together this mega-awesome list. I'd imagine you'd have spent a good chunk of your time to colllect, read, & edit the materials to present. No complains, only appreciation. My issue is not really an issue per se. It's close to a suggestion, so to speak. As far as I reckon, meta lists such as Anyway, Thanks for the list 👍 |
Not too much - I just saw that people weren't consistent in looking for others, so I tried to make one that makes it easier.
Issues on GitHub can be enhancements. :) I'll link to the script. thanks for the suggestion. |
It would be handy if you could submodule the referred repositories so one can pull them altogether in one go.
subtree
is rather copyright invasive that I'd not look into it though.The text was updated successfully, but these errors were encountered: