July 2018
Intermediate to advanced
354 pages
10h 57m
English
The repositories on GitHub store extra information in some refs namespaces. If a repository has had a pull request made, the pull request will be recorded in the refs/pull/* namespace. Let's look at this in the following example:
$ git clone --mirror git@github.com:jenkinsci/extreme-feedback-plugin.git $ cd extreme-feedback-plugin.git $ git show-ref | cut -f2 -d " " | cut -f1,2 -d / | sort -u refs/heads refs/meta refs/pull refs/tags
Read now
Unlock full access