git问题列表(一)(持续更新中~~~)

文章目录



问题1:如何在本地创建git仓库,并推送到远程仓库?

答:

步骤如下:

  1. 在版本控制平台创建空的仓库 。如:https://gitee.com/xxxx/myclass-api.git

  2. 创建本地 git 仓库:

shell 复制代码
# 创建目录
mkdir myclass-api
cd myclass-api
# 初始化仓库
git init 
# 创建并提交文件
touch README.md
git add README.md
git commit -m "first commit"
  1. 将本地文件推送到远程仓库
shell 复制代码
# 设置本地仓库对应的远程仓库
git remote add origin https://gitee.com/xxxx/myclass-api.git
# 推送当前分支的代码 到 远程分支master
git push -u origin "master"

问题2:如何创建本地分支,并基于其创建远程分支?

答:

  1. 以master为基线,创建本地分支。
shell 复制代码
# 此时分支必须已切换到master
git branch dev_0.0.1;

注:执行该命令所在的分支,即为其基线分支。

  1. 基于当前分支,创建远程分支
shell 复制代码
# 切换到新建的分支
git checkout dev_0.0.1;
# 推送到远程分支,如果远程分支不存在,则创建远程分支
git push -u origin dev_0.0.1;

注:这一步成功的前提:远程仓库的设置是正确的。否则可能会报错。


问题3:报错"'origin' does not appear to be a git repository"是什么原因?

答:
1.报错描述:

修改并提交文件后,打算将本地分支推送到远程。结果报错了:

shell 复制代码
$ git push -u origin dev_0.0.1;
# 报错信息
fatal: 'origin' does not appear to be a git repository
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

2.原因排查:

获取远程仓库的地址:

shell 复制代码
$ git remote -v;
master  https://gitee.com/xxxx/myclass-api.git (fetch)
master  https://gitee.com/xxxx/myclass-api.git (push)

3.报错原因:

为仓库指定了错误的名称。这里仓库的名称为master ,应当命名为origin

4.解决方法:

shell 复制代码
## 删除远程地址
git remote remove master;

## 重新添加远程地址
git remote add origin https://gitee.com/xxxx/myclass-api.git;

注意:这里的origin 有什么作用呢?

这是帮助文档的内容:

Add a remote named for the repository at <URL>. The command git fetch <name> can then be used to create and update remote-tracking branches <name>/<branch>

意思就是:

为仓库增加一个远程的名称,就可以在git fetch中使用这个名称,以用于创建和更新远程分支remote_name/branch_name

所以,origin 在git命令中可用于指代远程仓库。

以下两个命令是等价的:

shell 复制代码
# 推送当前分支到远程,远程分支名为dev_0.0.1
git push --set-upstream origin dev_0.0.1;
#
git push -u origin dev_0.0.1;

问题4:如何删除远程分支?

答:

如果单纯删除远程分支,可以使用如下方法:

shell 复制代码
# 方法一
git push origin :test;

或者

shell 复制代码
# 方法二
 git push origin --delete test;

注:

  • 删除分支时,当前分支不能处于使用状态。如:要删除test分支,则当前分支不能是test,需要切换到其他分支,才能对其进行删除。
  • 上面的命令只删除了远程分支,本地分支还是存在的。

若要删除本地分支,请使用下面的命令:

shell 复制代码
git branch -D test;

分支的查看命令如下:

shell 复制代码
# 查看所有分支
git branch -a;

-a中的 a 是单词 all 的缩写。

shell 复制代码
# 仅查看本地分支
git branch;
shell 复制代码
# 仅查看远程分支
git branch -r;

-r中的 r 是单词 remote 的缩写。

相关推荐
嘤嘤怪呆呆狗11 小时前
【开发问题记录】执行 git cz 报require() of ES Module…… 错误
前端·javascript·vue.js·git·vue
阳区欠18 小时前
【Linux】Linux的基础工具
linux·服务器·git·vim·gcc/g++·makefile/make·gdb/cgdb
l and1 天前
Git 行尾换行符,导致无法进入游戏
android·git
风行男孩1 天前
Git 中忽略文件的版本跟踪(初级方法及高级方法)
git
ziyu_jia1 天前
【日常开发】Git Stash使用技巧
git·git stash
catmes1 天前
Git开发常用命令总结
git
是姜姜啊!1 天前
git命令
git
云只上2 天前
git更改当前项目的远程仓库,保留原始仓库提交记录提交到新仓库
git
__zhangheng2 天前
Mac 查询IP配置,网络代理
linux·服务器·网络·git
乐闻x2 天前
VSCode 插件开发实战(十二):如何集成Git操作能力
ide·git·vscode