Member-only story
Introduction
Git is one of the source code version control systems . Distributed version control.
- Since the update history is stored in Git, file copy for backup is not required, when, who information where to have changed is recorded at a glance because there is and editing records, a past You can restore to the state
- You can display the difference where you changed it.
- If someone is editing a file while you are editing it, a warning (conflict) will be issued when uploading Since it is displayed, you can prevent the situation of overwriting without knowing it.
Appearance branch
- master: Latest source branch for release
- develop: Development branch
- work_develop: Work branch
Repository
A place to record the status of files and directories. By placing the directory that is saved as a change history and you want to manage in the repository, you can record the change history of files and directories in that directory.
Repositories can be divided into the following two types.
- remote repository : use to be placed in the server shared by multiple people.
- Local repository : for…