github上面拉项目、上传项目(VS code、WebStorm、Git Bash) 拉取项目VScodeWebStorm 上传项目基本步骤VScodewebstorm 拉取项目 VScode WebStorm 上传项目 基本步骤 $ cd 本地项目路径 $ git init //创建.git文件 $ git add . //点表示该目录内所有文件,也可以改成具体的文件名 $ git commit -m “first commit” $ git remote add origin https://githun.com/Yangbeil/test1.git $ git push -u origin master VScode webstorm