任何人都可以解释成功的 git push 命令的输出吗?尤其是最后一行(master -->> master) ,

Can anybody explain the output for a successful git push command ?? Especially the last line(master -->> master) ,

git push python_test_files master
Username for 'https://github.com': abhisekdas03590
Password for 'https://abhisekdas03590@github.com': 
Counting objects: 3, done.
Writing objects: 100% (3/3), 261 bytes | 0 bytes/s, done.
Total 3 (delta 0), reused 0 (delta 0)
To https://github.com/abhisekdas03590/python_test_files.git
 * [new branch]      master -> master
  • git push python_test_files 'https://github.com' 的主用户名: xxxxxxxx 'https://xxxxxxxx@github.com' 的密码:使用用户名和密码将代码推送到 master 分支上的 repo
  • 计数对象:3,完成。提交到 repo 的文件的松散对象数
  • 写入对象:100% (3/3),261 字节 | 0 bytes/s,完成。 文件写入repo的松散对象数
  • 共3个(delta 0),重复使用0个(delta 0)到 https://github.com/xxxxxxxx/python_test_files.git 文件被推送到提到的 github repo
  • [新分支] master -> master新分支在本地被推送到远程

希望对您有所帮助..!编码愉快..!