how to pull a project using git command

command illustration
git init initialize
git add . add all file
git commit -m “new project” commit content with the information,”new project”
git remote add origin https://github.com/15045120/test.git add remote project you want to pull
git remote -v see which your remote project is
git push -u origin master pull the project

猜你喜欢

转载自blog.csdn.net/qq_36336003/article/details/80489236