git init 建立仓库
git status 状态
git add index.php 提交到暂存区 git add .
git commit -m "备注信息" 提交到版本库
git rm qq.txt 删除
git remote add origin https://gitee.com/ohh_suc/lianshou.git 为本地库添加远程库
git push origin master push推代码 推送到别名为origin的远程库去
git clone https://gitee.com/ohh_suc/lianshou.git 克隆下来
git pull lianshou master
git log --pretty=oneline 日志
git reflog 操作日志
git reset --hard HEAD^^^^ 切换版本
git reset --hard 版本号
git branch 查看分支
git branch 分支名 新建分支
git checkout wechat 切换分支
git branch -d wechat 删除分支
git merge wechat 合并分支
git remote -v 查看远程仓库别名
git remote remove lianshou 删除远程库别名
ssh-keygen -t rsa -C "xxxxx@xxxxx.com" 生成 sshkey
cat ~/.ssh/id_rsa.pub 查看你的 public key
git status 状态
git add index.php 提交到暂存区 git add .
git commit -m "备注信息" 提交到版本库
git rm qq.txt 删除
git remote add origin https://gitee.com/ohh_suc/lianshou.git 为本地库添加远程库
git push origin master push推代码 推送到别名为origin的远程库去
git clone https://gitee.com/ohh_suc/lianshou.git 克隆下来
git pull lianshou master
git log --pretty=oneline 日志
git reflog 操作日志
git reset --hard HEAD^^^^ 切换版本
git reset --hard 版本号
git branch 查看分支
git branch 分支名 新建分支
git checkout wechat 切换分支
git branch -d wechat 删除分支
git merge wechat 合并分支
git remote -v 查看远程仓库别名
git remote remove lianshou 删除远程库别名
ssh-keygen -t rsa -C "xxxxx@xxxxx.com" 生成 sshkey
cat ~/.ssh/id_rsa.pub 查看你的 public key