Simple to use cloud-code controller-based versions of git project

The project submitted to step git remote repository

1. Installation git (windows system)

Official Download: https://git-scm.com/downloads
Here Insert Picture Description
After the download is complete, click on Install:
Here Insert Picture Description
Note: Click next, what do not move all the way to installation in the end

Create your own remote repository, as follows:
Here Insert Picture Description
the need to fill after fill out the options, click Create you will see the following page:
Here Insert Picture Description

1.1 After the installation is complete, right-click on the desktop Git Bash Here you can see the option to enter git convenient interface, as shown below:

Here Insert Picture Description

2. Use these steps:

2.1 The first step: In the git interface cdto enter their own projects, as shown below:

Here Insert Picture Description

Step 2.2: inputting a first command git initto initialize the warehouse, as shown below:

Here Insert Picture Description

2.3 Step 3: Run command git remote add origin + '自己的远程仓库地址', as shown below:

Here Insert Picture Description

2.4 Fourth step: run command git pull origin master, the remote repository pull (pull) to a local project folder, as shown below:

Here Insert Picture Description

2.5 Fifth Step: Run command git add .(.表示所有)or git add + '文件名'the item is pushed to a remote repository staging area, as shown below:

Here Insert Picture Description

2.6 Step Six: run command git commit -m + '对提交的项目添加的描述', the item is pushed to a remote repository, as shown below:

Here Insert Picture Description
###### 2 7. Step Seven: Run command git push origin master', the project will be submitted to a remote repository masterbranch, as shown below:
Here Insert Picture Description

At this point we go back yard cloud warehouse refresh will see amazing scene there!

Here Insert Picture Description
Note: git simple to use, hoping to give the majority of programmers comrades brought meager help, thank you! ! !

Published 22 original articles · won praise 0 · Views 1144

Guess you like

Origin blog.csdn.net/bigpatten/article/details/104182170