常用的Git命令 添加远程仓库 git remote add origin 仓库名称 https://xxxx/xxx/yyy.git 创建本地仓库 git init 本地提交 git status -s 或者git status git add .添加全部,或者git add 一个一个添加也行 g ...
分类:
其他好文 时间:
2019-07-16 11:01:56
阅读次数:
100
天gitlab中遇到的问题:当 git push origin branch_name时遇到报错如下:fatal:'origin' does not appear to be a git repositoryfatal:Could not read from remote repository原因: ...
分类:
移动开发 时间:
2019-07-16 00:03:21
阅读次数:
230
一、需求 开发环境:当然啦,前提是你要完整检测整个项目无错误的运行:npm run dev 后项目在本地预览问题没有问题 二、服务器本地阅览 生产环境:项目制作完成后需执行npm run build操作将项目打包。 这时项目的目录下会生成一个 dist文件夹,它里面又包含一个static文件夹和一个 ...
分类:
其他好文 时间:
2019-07-15 13:34:57
阅读次数:
86
We have a list of points on the plane. Find the K closest points to the origin (0, 0). (Here, the distance between two points on a plane is the Euclid ...
分类:
其他好文 时间:
2019-07-13 09:30:20
阅读次数:
124
git fetch --all git reset --hard origin/master git fetch 只是下载远程的库的内容,不做任何的合并 git reset 把HEAD指向刚刚下载的最新的版本 git fetch --all git reset --hard origin/maste ...
分类:
其他好文 时间:
2019-07-12 18:56:41
阅读次数:
126
1.BERT模型 BERT的全称是Bidirectional Encoder Representation from Transformers,即双向Transformer的Encoder,因为decoder是不能获要预测的信息的。模型的主要创新点都在pre-train方法上,即用了Masked L ...
分类:
其他好文 时间:
2019-07-11 09:33:19
阅读次数:
188
1,首先在码云上新建一个项目,如下图所示 2,本地新建一个文件夹 3,进入新建的文件夹,点击鼠标右键,选择git bash here 然后在窗口输入 git init 这时候文件夹会多出一个.git文件夹,看不到文件夹的,点击鼠标右键选择“显示不显示隐藏的文件”就可以看到这个文件夹了 4,进入刚刚在 ...
分类:
Web程序 时间:
2019-07-08 23:53:15
阅读次数:
163
Csdn 将本地工程push到远程 方式一: 建立本地仓库 git init 创建远程仓库:在github或者gitlab创建远程仓库 让本地仓库和远程仓库进行关联 git remote add origin git@mycode.skylettestudio.com:xlPay/XLPay.git ...
分类:
其他好文 时间:
2019-07-08 23:50:14
阅读次数:
146
一、完成项目后再在github上面新建仓库然后上传代码文件 1.创建仓库时不初始化README.md文件 注: 如需本地是否成功添加有远程仓库:git remote -v 如需修改远程关联仓库地址: git remote set-url origin http://www.baidu.com //如 ...
分类:
Web程序 时间:
2019-07-08 13:40:49
阅读次数:
141