cd project git init git remote add origin http://gitlab.xxx.com/group/project.git (删除本地origin:git remote rm origin) git add . git branch master (删除本地分 ...
分类:
Web程序 时间:
2020-06-03 10:44:44
阅读次数:
79
一、 Git 常用命令速查 git branch 查看本地所有分支git status 查看当前状态 git commit 提交 git branch -a 查看所有的分支git branch -r 查看远程所有分支git commit -am "init" 提交并且加注释 git remote a ...
分类:
其他好文 时间:
2020-06-02 00:03:34
阅读次数:
57
背景 由于gitlab地址修改后导致本地仓库的远程仓库失效 解决办法 直接修改本地的远程仓库地址 - 进入项目地址git remote -v 查看旧地址 - 更新指令 git remote set-url origin newUrl 先删除后新增 - 删除旧地址 git remote rm orig ...
分类:
其他好文 时间:
2020-05-31 11:15:02
阅读次数:
307
替换中科大源 替换brew.git: cd "$(brew --repo)" git remote set-url origin https://mirrors.ustc.edu.cn/brew.git 替换homebrew-core.git: cd "$(brew --repo)/Library/ ...
分类:
其他好文 时间:
2020-05-30 15:56:43
阅读次数:
71
1,查看本地是否配置了远程仓库地址 git remote -v 2,删除远程地址 git remote rm origin 如图: 3,添加新地址 git remote add origin url 注意:url 为你远程仓库新地址 如图: 看到新地址生成,说明你已经配置成功了 ...
分类:
其他好文 时间:
2020-05-30 10:52:42
阅读次数:
155
1.git init 使用 git init 命令 ,初始化一个git 本地仓库此时会在本地创建一个 .git 的文件夹,一般这个文件夹是隐藏的 2.git remote add origin http://***************************** 使用git remote add ...
分类:
其他好文 时间:
2020-05-25 12:05:28
阅读次数:
97
1.先到要提交项目目录里右键选择git bash。 2.git init 初始化本地仓库 3.git add . 把本地文件添加到本地仓库暂存区,.的意思是把当前目录下所有的文件及子目录都添加管理 4.git commit -m 'first commit'。提交的内容 5.git remote a ...
分类:
Web程序 时间:
2020-05-23 19:57:23
阅读次数:
67
肯定是clone一份到gitHub啦 保存一份修改后的npm包到自己的私有库 1.npm 安装 git 仓库的方式 npm install <git remote url> 例如 npm install github:mygithubuser/myproject 2.把package.json的版本 ...
分类:
其他好文 时间:
2020-05-18 10:49:40
阅读次数:
284
1.查看已经存在的remote git remote 查看remote详细信息 git remote -v 或者 git remote --verbose 查看更详细的信息 git remote show <remote_name> 2.添加新的remote git remote add <url> ...
分类:
其他好文 时间:
2020-05-15 00:12:11
阅读次数:
49
1. 本地新增项目 touch README.md git init git add README.md git commit -m "first commit" git remote add origin https://XXX.git 仓库地址 git push -u origin master ...
分类:
其他好文 时间:
2020-05-13 12:26:12
阅读次数:
52