The following is the GNU All-permissive License as recommended in https://www.gnu.org/licenses/license-recommendations.en.html
Copyright (C) 2024 Free Software Foundation sysadmin@fsf.org
Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. This file is offered as-is, without any warranty.
Contributions are welcome. See https://savannah.gnu.org/maintenance/fsf/.
Delete a branch from vcs.
Login to vcs.
ssh root@vcs.fsf.org
Login as the git
user.
su -l git
Change to the directory that you want to modify.
cd repositories/civicrm-core.git/
List all branches.
git branch -a
Delete the branch with -d
:
git branch -d 5.24.4-fsf-michael-attempt-0
Psych! Follow the prompts to really delete it with -D
:
git branch -D 5.24.4-fsf-michael-attempt-0
Exit.
exit
exit