Python_day02_昨日回顾.txt 829 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. Python_day02_昨日回顾.txt
  2. Git
  3. git clone ssh://git@10.0.122.124:2224/shark/pythoncode.git
  4. cd pythoncode
  5. .git
  6. .git/config
  7. git config --globle user.name
  8. user.email
  9. mkdir my_project
  10. cd my_project
  11. git init
  12. git add . # 添加到暂存区
  13. git commit -m "描述信息" # 提交到 master 分支
  14. git branch
  15. git branch dev
  16. git checkout dev
  17. git checkout -b bac
  18. git checkout -- file
  19. git diff
  20. git checout master
  21. git merge dev
  22. file
  23. echo "123"
  24. echo "456"
  25. get_info
  26. http://www.qfedu.com/api/user/1
  27. git remote add ssh://git@10.0.122.124:2224/shark/pythoncode.git
  28. git add .
  29. git commit -m "ddd"
  30. git push -u origin master
  31. git push origin bac
  32. git push origin tagname
  33. git tag tagname
  34. tag ---> commit
  35. git push origin --all
  36. --tags