| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- Python_day02_昨日回顾.txt
- Git
- git clone ssh://git@10.0.122.124:2224/shark/pythoncode.git
- cd pythoncode
- .git
- .git/config
- git config --globle user.name
- user.email
- mkdir my_project
- cd my_project
- git init
- git add . # 添加到暂存区
- git commit -m "描述信息" # 提交到 master 分支
- git branch
- git branch dev
- git checkout dev
- git checkout -b bac
- git checkout -- file
- git diff
- git checout master
- git merge dev
- file
- echo "123"
- echo "456"
- get_info
- http://www.qfedu.com/api/user/1
- git remote add ssh://git@10.0.122.124:2224/shark/pythoncode.git
- git add .
- git commit -m "ddd"
- git push -u origin master
- git push origin bac
- git push origin tagname
- git tag tagname
- tag ---> commit
- git push origin --all
- --tags
|