Closed Preeticp closed 8 years ago
LGTM :+1:
@Preeticp Could you please open an issue for this change and reference it in the commit message. Even though it is a minor change it should go through the proper process.
@hferentschik, I did this is as part of fix for ADB issue #566; https://github.com/projectatomic/adb-atomic-developer-bundle/issues/566. Can I reference the same, or do I need to create a separate issue in the vagrant service manager repository?
or do I need to create a separate issue in the vagrant service manager repository?
Yes please. We need to have an issue in service-manager as well to properly track changes within the repo as well (plan milestones, cut changelogs, map changes/commits to issues, etc)
@Preeticp Will you change the commit message or shall I do it?
Done, as per your instructions in IRC. Checked with Git Log, it shows the changed message. Let me know if it is not done right, I would like to do this myself, so that I can learn.
Checked with Git Log, it shows the changed message.
Good
Let me know if it is not done right, I would like to do this myself, so that I can learn.
As far as I can tell, you have not pushed the changes to your feature branch. There is no updated commit in this pull request. You will have to force push (on your feature branch):
git push -f
This should push your local changes to the feature branch to the pull request.
@hferentschik $ git push -f HEAD gave me the following error:
fatal: 'HEAD' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
However I was able to do $ git push origin branch_name -f and I think it worked. Do let me know if there are any concerns.
Sorry, parts of my message disappeared in my last comment, since I forgot to escape properly
git push -f <fork> HEAD
HEAD is just a git "alias" for the current branch. By using head you don't have to think about the current branch name.
Thanks @hferentschik, parts within angular brackets seem to disappear in the comments, you need to use backticks for it to show I guess, like<xyz>
.
Fix for issue #429