https://github.com/wwillv/git-study
就是学习怎么用git工具
https://github.com/wwillv/git-study
Last synced: about 2 months ago
JSON representation
就是学习怎么用git工具
- Host: GitHub
- URL: https://github.com/wwillv/git-study
- Owner: WWILLV
- Created: 2017-04-06T10:41:59.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-18T10:47:07.000Z (over 7 years ago)
- Last Synced: 2025-01-28T03:41:46.818Z (4 months ago)
- Size: 45.1 MB
- Stars: 5
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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