标签:comm 包括 -- 编辑 template clone res mes 自定义
git init
git status
git add <filename>
git commit -m <message>
git log
git reset <commitID>
git branch
git merge <branchName>
git cherry pick
git stash
git reflog
git reset 的模式
git checkout <branchName>
git checkout -b <name> <template>
<name>
要创建的分支名称<template>
以哪个分支或者 commit 为模板,默认为以当前所在分支为模板git remote add origin
git fetch
git pull
git clone
git push
git push -set-upstream origin
git rebase
标签:comm 包括 -- 编辑 template clone res mes 自定义
原文地址:https://www.cnblogs.com/AAABingBing/p/12690842.html