Steps for how to best use GitHub features for collaborative work:
(I'll add images and more detail later)
1) clone repo to your PC (unless you already have it on your PC)
2) create a branch in VS
3) make your code changes to your branch (not the to master) and test them out
4) push periodically to your branch (not to the master) on GitHub (make sure only to push code, not .exe, .config, or modules, etc)
5) once you are ready to finalize your code for your branch, create a pull request from within VS (VS will redirect you to the GItHub web page for the actual making of the pull request)
6) wait for Karl or Slowdive to merge the pull request into the master
7) once it has been merged, switch back to the master branch in VS and pull the latest changes to your PC version of the master branch
8) start another branch to make more changes (go to step 2)
GItHub IB Guide
-
- Posts: 148
- Joined: Mon Jan 20, 2020 9:01 am
Re: GItHub IB Guide
Thank you, Jer - once I restart my coding endeavours (soon, I hope) this will be extremely helpful.
Re: GItHub IB Guide
I figure it will be useful for us both since I often can't remember how I did things after a few daysyoungneil1 wrote: ↑Mon May 17, 2021 3:00 pm Thank you, Jer - once I restart my coding endeavours (soon, I hope) this will be extremely helpful.

I have similar type step by step instructions for how to build release versions and post to Google Play and Apple App Store (because I always forget).
Re: GItHub IB Guide
So now that most of the features from IBbasic are added to IB, I will start creating smaller branches. I'll make a branch for each bug that I am trying to fix and then make a pull request once the bug is fixed.