我把她从女孩变成了女人,她把我从男孩变成了,穷人。

文章列表

1-2条,共2条数据.

git如何一个命令提交代码到多个代码仓库

Written by Quinn Pan on 2020年6月8日 15:06:29. Posted in 嵌入式系统

有时候会因为各种我们需要把代码同步到多个版本库,比如国内的一般会有两个代码仓库,一个是github,一个是gitee。有时候我们还会用到阿里云和腾讯云的代码库。如果我们用git remote add的命令我们将会添加四个代码仓库。比如我们先添加github: git remote add github https://github.com/test/test.git  然后依次添加gitee,aliyun,  git remote add gitee htt...



如何修复:git bash WARNING: terminal is not fully functional

Written by Quinn Pan on 2020年3月27日 21:03:00. Posted in 编程技术

For Git Bash, this can be fixed by adding the following line to ~/.bashrc: export TERM=cygwin -or- export TERM=msys The first seems to be the original by git for wind...