Reputation: 1059
I'm using the web interface of the github. I cannot access command-line.
I'm facing difficulties to update my sub-branch with respect to master branch. My sub-branch is A and I tried yo update it to master branch.
I tried a pull request but files did not update.
Can anyone guide me through this?
Upvotes: 0
Views: 1245
Reputation: 11337
You should merge your develooment branch A into master locally and then push it (master) back into github.
The local steps are:
Checkout master branch
Merge sub branch A into master
Push master into origin (github)
You can do each of these steps with your preferable GUI client if you not using command line
Upvotes: 1