-
-
Notifications
You must be signed in to change notification settings - Fork 253
Replace everything under core
#733
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
Conversation
Update ci branch name
|
Your merge target branch is error, please close and recreate PR |
I modify for you, github is good |
|
But, you shouldn't use github webpage |
This way, we can avoid many unnecessary commits histroy |
Merge dev branch manually.
How about now? I remerged the changes |
|
This is the step by step to create new branch from upstream # Goto your local repo dir
cd axis
# add a remote name `official`
git remote add official https://github.com/axis-project/axis.git
# fetch remote `official`
git fetch official
# create new branch named `my-feature` from branch `official/dev`
git checkout -b my-feature official/dev
# do your modifications in branch `my-feature`
# commit and push your modifications branch my-feature to your own github repo
git add . && git commit -m "Example commit message"
git push origin my-feature
# Then you can goto upstream github webpage to create the PR with your plain branch `my-feature`
|
Refer to #724