The user interface on GitHub does not currently support the way to see your commits in a branch on a code tab. However, I noticed that when I select a branch from the drop-down list, I see the following URL:
// This shows me all commits from all users in the branch called "2.2-stable" https://github.com/jquery/jquery/commits/2.2-stable
If I click on the username in the commit list, I see the following URL:
//This shows me the list of commits from the user "mgol" in the master branch (default branch) https://github.com/jquery/jquery/commits?author=mgol
So, I thought: why not try adding a query string ?author=mgol to a URL that shows commits in a specific branch:
Decision:
// Show me the list of commits from the user "mgol" on the branch called "2.2-stable" https://github.com/jquery/jquery/commits/2.2-stable?author=mgol
Again, the user interface does not have a button that allows you to see this view (as far as I know), but you can manipulate the query string to filter out only what you want to see.
jmort253
source share