RaulYang

vim .git/config 内容。

[core]
        repositoryformatversion = 0
        filemode = true
[user]   // 这里要与服务器一致
        name = nyang
        email = nyang@neolink.com.cn
[remote "tshark"]
        url = http://10.0.0.234/platform/packages/apps/SoundRecorder.git
        review = http://10.0.0.234:8080
        projectname = platform/packages/apps/SoundRecorder
        fetch = +refs/heads/*:refs/remotes/tshark/*
[branch "new_SoundRecorder"]
        remote = tshark
        merge = refs/heads/tshark_dev2

 

创建分支:git checkout -b new_SoundRecorder tshark/tshark_dev2

添加:git add -A

提交本地:git commit

上传服务器:repo upload

分类:

技术点:

相关文章:

  • 2022-01-07
  • 2022-01-07
  • 2022-01-07
  • 2021-05-25
  • 2022-01-07
  • 2021-04-25
  • 2021-11-23
  • 2021-11-29
猜你喜欢
  • 2022-01-07
  • 2022-01-07
  • 2022-01-07
  • 2021-12-21
  • 2022-01-07
相关资源
相似解决方案