Github上传工程文件

  1. 在github上New repository,并复制该地址URL;
  2. 打开Git,cd到待上传文件的目录;
  3. git clone URL;
  4. cd 进入master;
  5. git add .
  6. git commit -m "first commit"
  7. git push -u origin master

你可能感兴趣的:(code)