Want to manage source code
I don't know why it doesn't work, so please let me know.
I'm a beginner. Nice to meet you!
vue-calendar/
└- Backend/#Rails Project
└- frontend /#Vue.js Project
Add Existing Repository...
create a repository
history
On GitHb
backend
frontend
The file is empty
As far as I read the message on the screenshot, it seems that I have not been able to upload my environment to GitHub in the first place.Furthermore, your environment is not version controlled by Git.
First of all, please use Git to manage the version of your environment, commit your files, and git push to GitHub.
When you write and build a program normally, multiple types of files are generated.
hoge.o
)The Source Code Management Tool (SCM) manages only the source files listed above.If you only have the source file, you can build the intermediate file or the final product.So the first step to start using SCM, including git
, is
.gitignore
git add
That's right. The second and subsequent parts are completely missing, so the repository is empty.The evidence says, "There are no changes.US>Only unmanaged files exist.Therefore, the first step is to git add
, when the human being makes a decision like "This file is the source file, this file is the intermediate file" and fill in .gitignore
. let's try!
Perhaps you are working on an app called GitHub Desktop, and you will need to "commit" to actually register what you have done.
reference:
Commit or review changes to your project
Push commit message entry and changes
Once you have decided what changes you want to include in the commit, type a commit message to push the changes.
© 2024 OneMinuteCode. All rights reserved.