You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 369 B

4 years ago
1234567891011121314151617181920
  1. #### 从命令行创建一个新的仓库
  2. ```bash
  3. touch README.md
  4. git init
  5. git add README.md
  6. git commit -m "first commit"
  7. git remote add origin https://git.trustie.net/PKU-DAIR/Hetu.git
  8. git push -u origin master
  9. ```
  10. #### 从命令行推送已经创建的仓库
  11. ```bash
  12. git remote add origin https://git.trustie.net/PKU-DAIR/Hetu.git
  13. git push -u origin master
  14. ```

分布式深度学习系统

Contributors (1)