git基本使用

Kelvin

介绍

开源的分布式版本控制系统

常用命令

1
2
3
4
5
6
7
8
9
10
11
git init //初始化,工作路径创建主分支master
git clone 地址 //克隆项目
git add ./文件名 //存入暂存区
git commit -m [信息] //推送到本地库
git push [别名] [分支名] //推送到远程库
git pull //拉取
git status //查看状态

git remote -v //查看所有远程库
git remote add [别名] [地址] //设置远程库别名
git remote rm [别名] //删除别名

SSH免密登录

1
ssh-keygen -t rsa -C 邮箱   //生成公钥和私钥

image

扩展

github,gitee和gitlab

gitlab

基于git的开源代码管理平台,可托管非开源项目

  • Title: git基本使用
  • Author: Kelvin
  • Created at: 2023-05-11 20:10:33
  • Updated at: 2023-01-16 22:15:19
  • Link: https://yanwc.com/2023/05/11/2023-01-06-git-blog/
  • License: This work is licensed under CC BY-NC-SA 4.0.
On this page
git基本使用