As in not only the major changes maybe the installed dependencies and all before a release without checking one by one?
Is there a way to find the important commits in GIT before a release?
176 Views Asked by Hasini At
1
There are 1 best solutions below
Related Questions in GITHUB
- How do I create my own Git branch to work on?
- Tools for Apache Cordova - Installed Plugins are skipped in build
- Permission denied hg-git
- git hard reset - what am I doing wrong?
- Merge Pull Request Manually
- rebasing interactively, but only one commit shows up?
- Error when adding a new build stage on Bluemix DevOps Services
- What should I do if I put MS Office (e.g. .docx) or OpenOffice( e.g. .odt) document into a git repository?
- How to trigger git hooks without pushing to the repo
- How to push a Git server repository issues to Github repository?
- How to backup an AOSP project on GitHub
- How to reference comments in github.com?
- Aptana, github & remote (sftp) files
- Opening PDF in a browser with Github Pages
- I need git to include the parent directory
Related Questions in GITLAB
- I can push but not pull git
- Git first pull and push to master issue
- Can you create a project on GitLab using ssh?
- Adding A Certificate Authority in GitLab?
- GitLab shows deleted branches
- Files deleted with git filter-branch reappear after push and pull back
- Gitlab LDAP (Active Directory) Authentication without Server Side Access
- Cannot upgrade gitlab from 7.9.4
- GIT - Split working space by user (designer vs programmer)
- git diff not working on a bare repo, post-receive hook
- gitlab: Windows: How to use chmod and fix "Get Permission denied (publickey). fatal: Could not read from remote repository"
- git pull returns, fatal: protocol error: bad line length character: No s
- Custom post-receive hook with gitlab
- Installing GitLab CI Runner on Raspberry Pi 2 (Raspbian)
- From development to deployment with Git
Related Questions in GIT-COMMIT
- GIT: remove commit halfway down in log but keep all overs
- LibGit2Sharp get repository changes after pull
- How to update the directory in git
- Couldn't set refs/heads/master when commit
- How to git commit in a new branch after I've already made the changes?
- Remove commit from history
- Can git filter out certain lines before commit?
- Can git ever send your code to a repo that isn't yours?
- git: What is the "right way" to fix an incorrect pushed commit message
- GIT Tag not on current commit
- How to save changes when in detached-head state?
- Move the commit from username to another?
- remove commits from contributor
- SourceTree: dst ref refs/heads/master receives from more than one src
- Display the Authors and commit message for commits that cause a conflict
Related Questions in GIT-DIFF
- Can I use `diff ...` as an indicator for branch cleanup?
- Git: Differences since a commit
- Compare committed revision with server one for the same branch
- Difference between single commit on branch and trunk
- Differences between the staged and unstaged versions of the same file, using difftool
- Git merge- will old problems be merged into master if I merge an old branch?
- git diff: many patches with three '@' symbol
- How to default to side-by-side view for diff in GitWeb?
- Git merge- Already up-to-date: hard reset?
- Git ignore BOM (prevent git diff from showing byte order mark changes)
- Git show whole file changes
- Can git diff be configured to not indicate a conflict on created files with same content?
- make git diff output changed function names only
- A git diff for what's new/modified/deleted from my current branch
- git-diff: not taking line order into account
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Since Git won't know which commits are important to you, you'll have to first define your own set of guidelines/format on how you write your commit messages, which you can then use later on to easily differentiate all the commits made for a particular development period.
For example:
Then, once all the branches have been merged to the main branch (let's say it's develop), checkout the develop branch and use
git log --grep=<PATTERN>to identify a specific set of commits.For example, if you only need the bug fix commits, do a:
which will show you all the commits with "bugfix" in the commit message.
If you only need the commits for a specific period, you can use the
--since=<date>option:If you want a formatted list (something that you can easily output to some sort of release notes, I assume), you can use the
--format=<format>option:The command above will give you something like this:
You can check out the other format options from the complete
git log docs.Basically, it will all depend on your commit message format.
As a tip, you can look into using a
commit.templateto make it easier to format your commit messages.