webstorm本地项目提交到git

198 阅读1分钟

在Terminal中 

1. git init 

2. git add README.md 

3. git commit -m "介绍" 

4. git remote add origin https://github.com/explodeStar/react-study.git 提交到git地址 

5. git push -u origin master