Learn to use github and will develop their own app pass up.

The main reference at the following address:

https://www.cnblogs.com/sdcs/p/8270029.html

https://www.cnblogs.com/sjhsszl/p/8708471.html

Mainly in the new git folder, after which the warehouse program, will then need to upload the files into the inside.

After tracking uploaded just fine.

First off the following screenshots and knowledge point of reference and Gangster Park blog:

https://www.cnblogs.com/hhjing/p/12202161.html

A preliminary understanding on GitHub now as follows:

         1.GitHub is oriented open source and proprietary software project hosting platform, it only supports gitu as the sole repository format hosting. Users can very easily find vast amounts of open source code on GitHub.

         2.Github hosts git repository, and provides a web interface. However, it is unique in that for ease of branching (unique point) from another project.

Learning to use GitHub's (local project uploaded to the whole process of GitHub) as follows:

         The following are accumulated on his sophomore crud_templet (CRUD template and Java packages summary and induction) uploaded to GitHub to summarize a summary for the case:

           1. Registration is installed, after the completion of ssh keys to upload local files to be created on top of git

      2. Create a new folder test, by command git init to create a new folder becomes manageable git repository (git in which there is a hidden folder, set its properties to be visible)

               

           3. Paste your project to the local Gita warehouse, (with the command $ git status to see its state) and then to git add to add items to the warehouse, with a get add. Add items in all of the files to the repository .

               

             $ Git status command to view the status:

              

 

            $ Git add command were all added:

              

          4. git commit -m "log" to submit items to the warehouse.

             

          5. Create a Git repository on GitHub, click on New repository to create.

              

 

 

             

           6. After you've created a Git repository, and then be associated with a local warehouse, local warehouse new command-line input

                    $ Git remote add origin + built on its GitHub repository address

             

           7. After completing the association, the command $ git push -u origin master (when the remote repository is empty plus -u, when the next upload from a local warehouse, and remote repository is not empty, use the command $ git push origin master) all the contents of the local repository pushed to the remote repository (ie GitHub above).

             

          8. refresh GitHub interface, complete the upload.

            

 

Guess you like

Origin www.cnblogs.com/dazhi151/p/12303793.html