当前位置: 首页 > 工具软件 > gitbase > 使用案例 >

Git-Base-Git远程仓库的使用

郝峰
2023-12-01

title: Git-Base-Git远程仓库的使用
date: 2021-10-05 18:56:26
tags: Git
categories:

  • Git

Git远程仓库的使用

1.配置用户信息

git config --global user.name "thelong"
git config --global user.email "296525773@qq.com"

2.创建仓库

1.创建远程仓库

假设远程仓库名称为test

复制远程仓库的URL地址

2.创建本地仓库

mkdir git_repository
cd git_repository/
git init

3.操作

克隆远程仓库到本地

git clone git@github.com:testerDong/test.git

将本地仓库与远程仓库关联

 git remote add origin https://github.com/testerDong/test.git

将本地仓库内容添加保存到暂存区

git add *.扩展名
git commit -m [message]

把本地库的内容推送到远程仓库

git push -u origin master

提交暂存区的指定文件到仓库区:

$ git commit [file1] [file2] ... -m [message]

-a 参数设置修改文件后不需要执行 git add 命令,直接来提交

$ git commit -a
 类似资料: