日常工作中git命令
2019-12-04 本文已影响0人
gem_Y
日常
- 从仓库中clone代码下来
git clone ssh://git@xxxxx.git
-
提交代码
git add .
git commit -m '添加系统管理模块'
git pull origin develop
git push origin develop -
把A仓库中把代码复制到B仓库中
-
clone B仓库下来
git clone ssh://xxxx
cd hfdc
- 从A仓库中下载代码并解压到 上面的文件夹中,用 ls 查看一下是否有代码
git add .
git commit -m 'initial project'
git push
git checkout -b develop
git push
nrm
nrm(npm registry manager )是npm的镜像源管理工具,使用这个可以快速地在 npm 源间切换
- 全局安装
npm install nrm –g
2 . 查看可选的源
nrm ls
image.png
- 添加
nrm add soucename(源的名称) http://xxx:4873/
- 切换
nrm use private
- 测试响应
nrm test taobao
- 把dist文件添加到 .gitignore 不生效的问题---坑
想把dist文件都忽略提交,发现不生效。
image.png
解决办法:手动把dist文件都删除了,然后
git add .
git commit -m 'ignore dist'
git push
然后就可以了