git
Last updated
Was this helpful?
Last updated
Was this helpful?
Simple list of git commands -
Git Rebase -
Source:
To view the PRs that were closed with out merging
is:pr is:unmerged state:closed
To see PRs that were closed without merging after a specific date
is:pr is:unmerged state:closed closed:>2018-04-01
When you switch between the public github and Intuit github, you may have trouble seeing the correct user associated with the commits. In order to avoid this mismatch, you need to set the correct git user BEFORE you make the commits.
Command to see the currently configure user
Replace user.email
with your actual email address like so: git config --global user.email "your_email@example.com"
.
Command to see all local configuration (can be run only from a git repo)
Configure the local repos pointing to public GitHub to use Gmail address. Configure global value to be corporate email address. (Or the other way around)