-
Notifications
You must be signed in to change notification settings - Fork 236
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add config feature 'initial_branch_name' #1379
Merged
CKolkey
merged 2 commits into
NeogitOrg:master
from
fnune:fnune/add-initial-branch-name-feature
Oct 21, 2024
Merged
Add config feature 'initial_branch_name' #1379
CKolkey
merged 2 commits into
NeogitOrg:master
from
fnune:fnune/add-initial-branch-name-feature
Oct 21, 2024
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fnune
commented
Jun 15, 2024
fnune
force-pushed
the
fnune/add-initial-branch-name-feature
branch
from
June 17, 2024 12:16
5e87225
to
b887fb4
Compare
CKolkey
force-pushed
the
fnune/add-initial-branch-name-feature
branch
from
July 21, 2024 21:34
b887fb4
to
1b7a228
Compare
CKolkey
force-pushed
the
fnune/add-initial-branch-name-feature
branch
from
September 2, 2024 21:16
1b7a228
to
e7ec7d4
Compare
fnune
force-pushed
the
fnune/add-initial-branch-name-feature
branch
from
October 18, 2024 19:40
e7ec7d4
to
4e96969
Compare
Hi! @CKolkey do you think this can get reviewed/merged? |
yea 😅 I'll try to take a look tomorrow. Sorry for the delay |
This config feature allows users to specify an initial branch name that will be used as a `get_user_input` default when Neogit asks for a name for a new branch. This is useful when working in teams with a branch naming convention. For example, teams may choose to prefix branches with a GitHub username. In that case, configuring Neogit with: ``` initial_branch_name = "myname/" ``` ...will result in the popup being prepopulated with `myname/`, after which I can specify the branch name.
CKolkey
force-pushed
the
fnune/add-initial-branch-name-feature
branch
from
October 18, 2024 21:30
4e96969
to
6171dfa
Compare
Nothing to be sorry about 😄 |
Btw @CKolkey have you considered adding the |
Sure, why not :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This config feature allows users to specify an initial branch name that will be used as a
get_user_input
default when Neogit asks for a name for a new branch.This is useful when working in teams with a branch naming convention. For example, teams may choose to prefix branches with a GitHub username. In that case, configuring Neogit with:
...will result in the popup being prepopulated with
myname/
, after which I can specify the branch name.