Read the statement by Michael Teeuw here.
Contributing to a GitHub repository - a bit stuck
-
Sam,
I think I ‘pulled’ it off.
Thanks a lot for that.Now I am here:
On https://github.com/schris88/MMM-Hoymiles-Wifi I now see:
Pull requests: 1
Click on ‘Pull requests’
1 Open Major edit of README file. #5 opened 2 minutes ago by evroom
Now it is up to Christian to approve this request, right ?
What does he need to do ?
And if he will give me write access, I can do this myself, right ?Of course I now need to make my changes to my repository, but would be nice how one completes this procedure.
-
@evroom yes, as it sits this is up to him to MERGE your changes into his
(this keeps people from stomping on others projects without warning)yes, if he makes you a collaborator on his project you can push directly,
please try to use a separate branch still and merge when tested@evroom said in Contributing to a GitHub repository - a bit stuck:
Of course I now need to make my changes to my repository, but would be nice how one completes this procedure.
to make more changes, do the
edit files on your system
test
add
commit
pushnow your repo is updated AND the PR is also updated (if he hasn’t merged yet)
if he HAS merged, then you have sync your fork with his, (github button)
git pull your fork to pc/pi, (already cloned, so just get updates)
you can delete the old new branch
git branch -D name
git checkout -b new_branch_nameuse something different in this case, your REMOTE still have this old/prior branch
(which you can delete on github) -
Great!
Then a final question:
In short:
I program using in VS Code and here is Source Control active.
Can I use the GitHub CLI and the Visual Studio Code like together, or will they bite each other ?A bit longer, with an example:
I have edited
HoymilesWifi.sh
in VS Code.
On my machine, I see:% git status On branch evroom Your branch is up to date with 'origin/evroom'. Changes not staged for commit: (use "git add <file>..." to update what will be committed) (use "git restore <file>..." to discard changes in working directory) modified: HoymilesWifi.sh no changes added to commit (use "git add" and/or "git commit -a")
On VS Code I see:
V Commit Changes $ HoymilesWifi.sh
Can I Commit it from within VS Code, or is it safer to use the GitHub CLI as I have done for the README.md file previously ?
-
@evroom you can use VSCode to do the commit and push…
I have not moved myself to that part of VSCode… (or let any IDE handle my commits etc)
-
@evroom Just launch a terminal in VsCode
Make sure it is set to bash.
Then you can run the same commands
git add
andgit commit -m "your commit text"
andgit push
from the terminal. -
@mumblebaj yes, was trying not to add too much extra as there is already a terminal window open for running MM with the modified module
-
@mumblebaj said in Contributing to a GitHub repository - a bit stuck:
Make sure it is set to bash.
It is set to zsh.
No issue to change it to bash, but is there a reasoning behind it ?Stupidly enough I had this Terminal open the whole time.
I just did ‘Commit’ from within VS Code and then did ‘Sync Changes’.
Result:
% git status On branch evroom Your branch is up to date with 'origin/evroom'. nothing to commit, working tree clean
So that works just fine.
I also made a change using the Terminal and then did the add and commit from the Terminal.
In the Source Control pane you can see what you do on the command line in real time. -