GitHub commits

GitHub is a distributed version control/software configuration management software.
The process of uploading files on GitHub is as follows:
1. Find your own file location.
2. git add .
    git add . is to add all modifications in the current directory to the git index. Adding to the Git index means being recorded in the version history, which is also a step that needs to be performed before committing.
3. git commit -m 'explain the document'
       git commit is to submit the modified content of the current workspace. If you want to append the title of the modified content, use the parameter -m
4. git push
       git push is to update the local commit code to the remote version In the library, complete the update of the remote code.
5. Enter your Git name.
6. Enter the Git password.
In addition: git rm deletes files in the current directory or git index;
            git status command is used to view the current git status.

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=326987420&siteId=291194637