You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Even Commits
Try and even out the commits (might be hard for reggie). It's good to have a balance of working from different people's computers and having a good level commits each.
Small Commits
Also you should try and make small incremental commits rather than one main feature at a time so it tells a story of each change you made to get to the feature (and makes it much easier to fix any problems in the future)
Reference Issues
Finally, you should reference the github issue each commit relates to.
So lets say you have an issue to write database tests that is issue number #100. A standard commit might be like this.
git commit -m "added test for find all query
relates #100
And then this commit will show up on that issue so you can see all the work done relating to each issue.
The text was updated successfully, but these errors were encountered:
Even Commits
Try and even out the commits (might be hard for reggie). It's good to have a balance of working from different people's computers and having a good level commits each.
Small Commits
Also you should try and make small incremental commits rather than one main feature at a time so it tells a story of each change you made to get to the feature (and makes it much easier to fix any problems in the future)
Reference Issues
Finally, you should reference the github issue each commit relates to.
So lets say you have an issue to write database tests that is issue number #100. A standard commit might be like this.
And then this commit will show up on that issue so you can see all the work done relating to each issue.
The text was updated successfully, but these errors were encountered: