Connect existing projects in VS2019 with remote libraries

1. Connect existing projects in VS2019 with remote libraries   

First create the initial project in gitee, and then update the project changed by the monkey play to gitee, the steps are as follows:

 1. Open VS and modify the content 

 

2. Add a message in the change, and then submit all

3. Click Sync 

4. Click to launch 

This shows that the changes have been submitted to the gitee website.

carry out.

 

In this case, your own changes have not been submitted yet, which will cause your own file to be overwritten and cause problems, which is to submit your own local storage.

2. Summary of the use of git in VS2019

 1. What do the functions of change (commit), synchronization (Sync), fetch, push, and clone in Visual Studio 2019 mean?

Let me declare that these functions are basically equivalent to those in git  

 Submit (VS click on the change will jump to the submit page): Only the changes you made on the local computer will be recorded. It will not mark changes in the remote repository. Extract: Only get the items that have changed remotely,

 Pull: Get the latest information from remote to local

Push: Push local files to remote warehouse

Synchronization: It will perform a pull (get updated information from the remote repo). Finally, it will perform a push.

Clone: ​​clone remote warehouse to local

Guess you like

Origin blog.csdn.net/weixin_43472073/article/details/108622088