Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
This is a git extension that merges a pull request or topic branch via rebasing so as to avoid a merge commit. To merge a PR or branch, the script does the following:
target
from the remote
repository and reset your local
target
to match it.target
.[close #<PR number>]
to the last commit message so
that Github will close the pull request when the merged commits are pushed.target
.target
to the remote
repository.Note:
remote
defaults to "origin"
(configurable; see below)target
defaults to "master"
git land [<remote>] <pull request number>[:<target>]
git land [<remote>] <branch>[:<target>]
git land 123
git land my-topic-branch
git land origin 42:target-branch
git land origin feature-branch:target-branch
You can install git-land using npm install.
npm install --global git-land
Put the bash script in a folder that is in your PATH
and make it executable.
For example, to install it to ~/bin/
, do the following:
curl -o ~/bin/git-land https://raw.githubusercontent.com/bazaarvoice/git-land/master/git-land
chmod +x ~/bin/git-land
Before pull requests for a remote repository can be landed by number, the git
remote for that repository must be configured to fetch pull requests as branches
in your local fork. To do so, run the following command, replacing both
occurences of origin
with the name of the git remote if necessary.
git config --add remote.origin.fetch '+refs/pull/*/head:refs/remotes/origin/pr/*'
By default, git-land
assumes the remote repository is pointed to by the git
remote origin
. To use a different default git remote, set the git-land.remote
option. For example, to use a remote named upstream
:
git config git-land.remote upstream
By default, git-land
merges the branch or pull request into master
if no
target branch is specified. To use a different default target branch, set the
git-land.target
option. For example, to use a default target branch named
dev
:
git config git-land.target dev
Thanks to @paulirish for git-open, from which I cribbed the format and some content for this README.
Copyright 2015 Bazaarvoice, Inc. Licensed under Apache 2.0
FAQs
Merges a pull request or topic branch via rebasing to avoid a merge commit.
The npm package git-land receives a total of 8 weekly downloads. As such, git-land popularity was classified as not popular.
We found that git-land demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.