>   -- You need to pull the notes from the git repo using a command like
>   the following:
> 
>       $ git fetch fetch origin refs/notes/*:refs/notes/*
> 
>   I added an alias to my ~/.gitconfig for this:
> 
>       [alias]
>       pullnotes = fetch origin refs/notes/*:refs/notes/*
> 
>   That way I can just do:
> 
>       $ git pullnotes

You can fetch origin notes automatically with this:

    git config --add remote.origin.fetch '+refs/notes/*:refs/notes/*'

The idea comes from http://git-scm.com/blog/2010/08/25/notes.html



_______________________________________________
systemd-devel mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/systemd-devel

Reply via email to