Difference between revisions of "Beginner C++ Game Programming Tutorial 15"

From Chilipedia
Jump to: navigation, search
(Video Timestamp Index)
(Links)
Line 19: Line 19:
  
 
== Links ==
 
== Links ==
Note, you don't need to clone from the Reductor repo like I do in the video (I do that to demonstrate a situation where you don't own the <code>origin</code> repo). You can just use a clone from one of my repos (since you don't have permissions on my repos).
+
Note that you don't need to clone from the Reductor repo like I do in the video (I do that to demonstrate a situation where you don't own the <code>origin</code> repo). You can just use a clone from one of my repos (since you don't have permissions on my repos). Also, when adding a non-source controlled solution to Git, I use a Snek solution I had laying around, but you can use whatever you like, as long as it isn't already being source controlled.
 +
 
 
* [https://github.com/planetchili/great_gitsby Great Gitsby Repo]
 
* [https://github.com/planetchili/great_gitsby Great Gitsby Repo]
 
* [https://github.com/planetchili/chili_framework Chili Framework Repo]
 
* [https://github.com/planetchili/chili_framework Chili Framework Repo]

Revision as of 23:59, 11 December 2016

In this video we learn how to use Git source control so that we can suck less at programming.

Git Skills Taught

  • How to clone a repo from GitHub
  • How to browse the commit (change) history
  • How to create a branch at a specific commit point and changing branches
  • How to commit changes to a branch
  • How to add a solution to source control
  • How to create a repo on GitHub and connect a local repo to it
  • How to connect a local repo to a GitHub repo you own when the local is already connected to a remote you don't own (because you cloned from that remote originally, etc.)

Video Timestamp Index

Tutorial 15

Homework

The homework is to find, acquire, build, and run the software shown at the end of the tutorial video.

The solution video is coming soon.

Links

Note that you don't need to clone from the Reductor repo like I do in the video (I do that to demonstrate a situation where you don't own the origin repo). You can just use a clone from one of my repos (since you don't have permissions on my repos). Also, when adding a non-source controlled solution to Git, I use a Snek solution I had laying around, but you can use whatever you like, as long as it isn't already being source controlled.

See also