Source control: Difference between revisions

From VNDev Wiki
No edit summary
No edit summary
Line 1: Line 1:
Source control is a set of activities which is often performed by any member of the team who is producing game assets of any kind (script, art, music, code, etc). It involves managing and organizing different versions of the assets produced, communicating to the [[Visual_Novel_Development_Team|team]] about changes made and the version to use for relevant team members. With VNs that have longer development duration, a [https://betterexplained.com/articles/a-visual-guide-to-version-control/ version control system] can be used to assist the development team in managing asset changes as well as facilitate coding in parallel. The job of managing the version control system typically falls under the [[Visual_Novel_Development_Team#Programmer|programmer]]'s role.
Source control is a set of activities which is often performed by any member of the team who is producing game assets of any kind (script, art, music, code, etc). It involves managing and organizing different versions of the assets produced, communicating to the [[Visual_Novel_Development_Team|team]] about changes made and the version to use for relevant team members. With VNs that have longer development duration, a [https://www.geeksforgeeks.org/version-control-systems/ version control system] can be used to assist the development team in managing asset changes as well as facilitate coding in parallel. The job of managing the version control system typically falls under the [[Visual_Novel_Development_Team#Programmer|programmer]]'s role.


== Source control tools ==
== Classic source control ==
 
=== Classic ===
* [https://drive.google.com/ Google Drive]
* [https://drive.google.com/ Google Drive]
* [https://www.dropbox.com/ Dropbox]
* [https://www.dropbox.com/ Dropbox]
* [https://discord.com/Discord]
* [https://discord.com/ Discord]
* any application that allows file sharing
* any application that allows file sharing


=== Version control system ===
== Version control system ==
* Github
* [https://git-scm.com/downloads Git]
* [https://www.mercurial-scm.org/ Mercurial]
 
[https://git-scm.com/book/en/v2/Getting-Started-About-Version-Control Version control systems] such as Git is often used along with a repository hosting and management service such as [https://github.com/ GitHub] or [https://bitbucket.org/product Bitbucket]. These services allow you to make coding assets and game builds available for all team members (or the public if desired), with additional functionalities unique to version control system such as [https://yangsu.github.io/pull-request-tutorial/ pull requests] which supports coding in parallel.
 
== Terminology ==
[https://betterexplained.com/articles/a-visual-guide-to-version-control/ version control]

Revision as of 16:36, 24 June 2022

Source control is a set of activities which is often performed by any member of the team who is producing game assets of any kind (script, art, music, code, etc). It involves managing and organizing different versions of the assets produced, communicating to the team about changes made and the version to use for relevant team members. With VNs that have longer development duration, a version control system can be used to assist the development team in managing asset changes as well as facilitate coding in parallel. The job of managing the version control system typically falls under the programmer's role.

Classic source control

Version control system

Version control systems such as Git is often used along with a repository hosting and management service such as GitHub or Bitbucket. These services allow you to make coding assets and game builds available for all team members (or the public if desired), with additional functionalities unique to version control system such as pull requests which supports coding in parallel.

Terminology

version control