An open API service indexing awesome lists of open source software.

https://github.com/wwillv/git-study

就是学习怎么用git工具
https://github.com/wwillv/git-study

Last synced: about 2 months ago
JSON representation

就是学习怎么用git工具

Awesome Lists containing this project

README

        

# Git学习
[Git教程](http://www.liaoxuefeng.com/wiki/0013739516305929606dd18361248578c67b8067c8c017b000/)
## create a new repository on the command line
> echo "# git-study" >> README.md

> git init

> git add README.md

> git commit -m "first commit"

> git remote add origin [email protected]:WWILLV/git-study.git

> git push -u origin master

## push an existing repository from the command line
> git remote add origin [email protected]:WWILLV/git-study.git

> git push -u origin master