简体   繁体   中英

git: how to push messages added by git notes to the central git server?

it seems like there is no proper documentation regarding git notes. I have added some notes to one of the commit using git notes add command. but when i push the commit, and later do a separate clone, i dont see the note message there. Is there a way to push all the note messages added via git notes command?

According to here [git-scm.org] , you can use

git push <remote> refs/notes/*

to push all notes. Fetching can be done with

git fetch origin refs/notes/*:refs/notes/*

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM