admin管理员组文章数量:1345475
I am trying to figure out a way that after my local development branch has been pushed up to GitHub, or BitBucket, or whichever VCS, and a pull request has been approved, when that branch is merged into main
, is there some sort of script or functionality that would allow the local development branch to be automatically deleted on my local system.
I'm not specifically referring to the git branch --delete
command, which obviously I can do manually, but rather have that branch be deleted from my local machine, after I check out into main
, and do a fresh git pull
of that very development branch that was previously merged in already.
What I am looking to do is:
- Push up changes to
local-branch
. - Merge
local-branch
intomain
after PR is approved, in the browser. - On my local system, check out into
main
andgit pull
the changes from the recently mergedlocal-branch
. - Have
local-branch
be deleted locally on my system, so when runninggit branch
, that branch is no longer listed.
Is this doable somehow? I hope that all made sense...
EDIT: Just some more info, so we use BitBucket as our VCS, and after the local-branch
is merged with the BitBucket interface's Merge
button, that local-branch
is not deleted on BitBucket, which is a company decision, but I am just looking to have it deleted on my local system after pulling the latest main
, after local-branch
has been merged.
I am trying to figure out a way that after my local development branch has been pushed up to GitHub, or BitBucket, or whichever VCS, and a pull request has been approved, when that branch is merged into main
, is there some sort of script or functionality that would allow the local development branch to be automatically deleted on my local system.
I'm not specifically referring to the git branch --delete
command, which obviously I can do manually, but rather have that branch be deleted from my local machine, after I check out into main
, and do a fresh git pull
of that very development branch that was previously merged in already.
What I am looking to do is:
- Push up changes to
local-branch
. - Merge
local-branch
intomain
after PR is approved, in the browser. - On my local system, check out into
main
andgit pull
the changes from the recently mergedlocal-branch
. - Have
local-branch
be deleted locally on my system, so when runninggit branch
, that branch is no longer listed.
Is this doable somehow? I hope that all made sense...
EDIT: Just some more info, so we use BitBucket as our VCS, and after the local-branch
is merged with the BitBucket interface's Merge
button, that local-branch
is not deleted on BitBucket, which is a company decision, but I am just looking to have it deleted on my local system after pulling the latest main
, after local-branch
has been merged.
3 Answers
Reset to default 2Go over branches from git branch -r --merged origin/main
and delete the corresponding local branches
If your local branch names are the same as the remote branch names, the following script will delete all the local branches whose names are the same as the remote branches if they were already merged into the $REPO_MAIN
branch. You can replace git branch -d
with git branch -D
when you want to delete the branch forcefully and I think -D
will better suit your need.
REMOTE=origin
REPO_MAIN=main
for remote_branch in $(git branch -r --merged "$REMOTE"/"$REPO_MAIN" | grep -v "$REMOTE"/"$REPO_MAIN" | grep -v 'HEAD'); do
branch_name=${remote_branch#"$REMOTE"/}
# Check if local branch exists
if git show-ref --verify --quiet refs/heads/"$branch_name"; then
echo "Deleting local branch: $branch_name"
git branch -d "$branch_name"
else
echo "No local branch for: $branch_name"
fi
done
You can set the git config value fetch.prune
to true which means the next time you pull down your repo, it will prune old refs from your local.
git config fetch.prune true
You can also set it globally to work for all repos on your local
git config --global fetch.prune true
fetch.prune If true, fetch will automatically behave as if the --prune option was given on the command line. See also remote..prune and the PRUNING section of git-fetch(1).
-p --prune Before fetching, remove any remote-tracking references that no longer exist on the remote. Tags are not subject to pruning if they are fetched only because of the default tag auto-following or due to a --tags option. However, if tags are fetched due to an explicit refspec (either on the command line or in the remote configuration, for example if the remote was cloned with the --mirror option), then they are also subject to pruning. Supplying --prune-tags is a shorthand for providing the tag refspec.
Try command below
git remote prune origin
本文标签: gitDelete Local Development Branch Automatically after Merge on GitHubStack Overflow
版权声明:本文标题:git - Delete Local Development Branch Automatically after Merge on GitHub - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743772371a2536353.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论