如何贡献
$ git clone git@github.com:xxx/prometheus_practice.git $ cd prometheus_practice $ git config user.name "yourname" $ git config user.email "your email"$ #do some change on the content $ git commit -m "Fix issue #1: change helo to hello" $ git push$ git remote add upstream https://github.com/songjiayang/prometheus_practice $ git fetch upstream $ git checkout master $ git rebase upstream/master $ git push -f origin master
Last updated