https://github.com/wangcch/hello-world
test git
https://github.com/wangcch/hello-world
Last synced: 3 months ago
JSON representation
test git
- Host: GitHub
- URL: https://github.com/wangcch/hello-world
- Owner: wangcch
- Created: 2017-05-10T03:06:35.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-06-18T14:00:39.000Z (almost 9 years ago)
- Last Synced: 2025-05-17T11:07:01.808Z (about 1 year ago)
- Size: 2.93 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hello-world
## how to use git (basis)
* Run the configure user name and email for the first time
git config --global user.name "wangcch"
git config --global user.email "ci713@qq.com"
* Initialize the warehouse
git init
* Add remote warehouse
git remote add origin http://...
* Access to the warehuse content updates
git pull origin master
* Check the local modification and not submitted file
git status
* Will submit the file information to add to the index in the library
git add test.txt
git add *
* Fill in the submission instructions
git commit -m "..."
* Update warehouse content
git push origin master