标签:切换 配置信息 str sof windows平台 github仓库 可视化 新建 pull
git init
git config -1
git config user.name ‘lazy‘
git status
git config user.email ‘12345@qq.com‘
git add 文件名
git add .
git reset
文件名
git reset commit ID
git reset
模式,下面的值都保留一个空格写在后面
git commit-m 加上描述
git log
git reflog
git rm 文件
git rm -r --cached .
git fetch origin master
git pull origin master
git remote add origin 远端链接
git push -u origin master
git checkout -b<name>origin<template>
<name>
新分支的名字<template>
以那个分支或者commit为模板origin
如果分支来至远程仓库,本地的不用写git checkout 分支名字
新分支的改动与其他分支没有关系
git merge
git branch
git push
git push -set-upstream orifin 分支
-set-upstream
设置上流分支、origin
远端仓库-u
默认主机标签:切换 配置信息 str sof windows平台 github仓库 可视化 新建 pull
原文地址:https://www.cnblogs.com/landuo629/p/12497430.html