关于#git#的问题,如何解决?git能否用指令向远程仓库添加issue?

git能否用指令向远程仓库添加issue?

img

请问能否通过git的指令添加issue,评论,close等等操作?

查了查应该这样就可以了,希望对你有帮助。

1. 先git stash     暂存更改
2. 再git checkout develop    develop用master代替,切换到master分支,远程仓库
3. 再git pull         拉取远程仓库代码到本地
4. 再git checkout issue/xxx    切换到自己之前创立的问题修改分支issue/xxx
5. 再git merge develop      发起合并请求
6. 最后git stash pop     把之前暂存的更改释放出来