侧边栏壁纸
博主头像
封存记忆 博主等级

行动起来,活在当下

  • 累计撰写 26 篇文章
  • 累计创建 24 个标签
  • 累计收到 0 条评论

目 录CONTENT

文章目录

git 简单使用

Administrator
2025-01-02 / 0 评论 / 0 点赞 / 3 阅读 / 0 字

git常用命令

1.设置用户名和邮箱

# Set global username
git config --global user.name "your_username"

# Set global email
git config --global user.email "your_email@example.com"

2.git 拉取代码时显示Filename too long的解决办法
1)查看是否关闭

git config --get core.longpaths

2)执行开启

git config --global core.longpaths true

3.查看分支

#查看本地分支
git branch
#查看远程分支
git branch -a

4.创建新分支

git checkout -b 新分支名

5.切换分支

git checkout 切换的分支名

6.查看远程仓库关联地址

git remote -v

7.添加远程仓库关联地址

git remote add 标识名 远程仓库地址 

8.克隆远程仓库

#普通克隆
git clone 远程仓库地址
#指定账户密码克隆 git clone http://15000000000:123456@git.xxx.com/abc/projectName.git
git clone https://{账户}:urlencode({密码})@远程地址
#指定分支并克隆
git clone -b 分支名 远程仓库地址

9.删除远程仓库地址

git remote remove 标识名

10.推送代码

#普通推送
git push
#强制推送 git push -f target
git push -f 标识名
#推送到指定分支 git push origin master
git push origin 分支名

11.更新代码

git pull
0

评论区