git / git-reference

Online Git Reference at http://git.github.io/git-reference/
Other
996 stars 363 forks source link

Replace broken links to kernel.org #30

Closed rbonvall closed 12 years ago

rbonvall commented 13 years ago

Links to the man pages in kernel.org were broken. I replaced all of them with links to their new locations at http://schacon.github.com/git/.

This is what I did:

for file in $(grep 'kernel\.org' -R -l .)
do
    sed -e 's#www.kernel.org/pub/software/scm/git/docs/#schacon.github.com/git/#g' -i $file
done
matthewmccullough commented 12 years ago

Thanks for the contribution. The @github/training-team and I have taken the maintenance of this over so we'll be merging pull requests frequently now. We appreciate your efforts!