Git: Push to a remote repository with a message

前端 未结 2 573
暗喜
暗喜 2021-02-18 14:21

My company is incorporating iRise for prototyping and it lacks any kind of versioning (unless making copies of your files with different file names = versioning). Anyway, we\'re

2条回答
  •  悲&欢浪女
    2021-02-18 15:13

    You will have to do a commit ( after adding files)

    git commit -m 'message'
    

    and then push:

    git push TestProject master
    

    You cannot associate a message to the push.

提交回复
热议问题