Skip to content
Discussion options

You must be logged in to vote

The discussion you linked to is pre-GA. The Kargo of today is virtually unrecognizable in comparison to what it was then, so you can dismiss that thread entirely.

If I understand your desired workflow correctly, what you want is to check out a branch tracking an existing remote branch (let's say main), make some modifications, commit, then push that to a new remote branch with common history with main so you can create a PR.

In the shell, something like this:

git checkout main
git pull origin main
# make changes
git add .
git commit -m "my changes"
git push origin main:new-branch # Will have common history with main
# open pr with new-branch as the source branch and main as the target

As …

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@aaron-lunsford-even
Comment options

Answer selected by aaron-lunsford-even
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants