At first, you just have to write the process. To write beautifully, read various codes, accumulate learning, Because it's the first time you can do it.
It's common to start writing somehow when you haven't organized your mind. The code I was writing to organize it has been messed up, I want to put it back ... Common things.
At the development site, the source code is version controlled, The history of corrections is always recorded. Anyone who writes code at work must be familiar with version control software.
I wonder what it means for people who are not engineers. Simply put, it is a mechanism to save the results recorded in units called commits. You can return to your liking in units of commits, or compare in units of commits You can also grasp the contents of the correction.
By the way, the following sites carefully explain where to start studying. https://www.backlog.jp/git-guide/
Register at the following site to use the service https://github.com/github
For the time being, let's push master and bring it to a state where it can be managed. Github is a Git service that you can use for free if you publish the source code. It is also used in the field of development.
It's OK if you can manage it like this
Make it possible to access the branch on Github created from Eclipse or IDE.
SourceTree https://ja.atlassian.com/software/sourcetree Graphical and easy to handle even for beginners, but heavy on Windows It works lightly on a Mac.
Git https://git-scm.com/ You will operate from the command line, but if you are serious about learning Learning on the command line is essential.
Recommended Posts