Git submission and Get Code

Get the code required when the current folder is empty

Use git to get the code from a remote repository

Then create a project .net core

When submitting the project needs to close vs

Project submission process

git init # Create a warehouse, if it is acquired from the remote to the warehouse do not need to create a 
git add. # add the current folder to the repository
commit -m "description" git # submit to the warehouse in the middle of the library, and add a description
git origin the Add Remote https://gitee.com/shllong/Hig/ # set the project source
git pull origin master # pull it projects
git push -u origin master # submit project

Guess you like

Origin www.cnblogs.com/sunhouzi/p/12107242.html