关于git:git-command

62次阅读

共计 268 个字符,预计需要花费 1 分钟才能阅读完成。

初始

git init

创立一个本地仓库的克隆版本

git clone /path/to/repository

远端服务器上的仓库

git clone username@host:/path/to/repository

增加暂存区

git add <filename>

提交理论更动

git commit -m "代码提交信息"

增加近程服务器

git remote add origin <server>

提交远端

git push origin master //-f 强行提交 

拉取远端

git pull origin master

commit

查看提交

git log

回滚提交

git reset --hard id

正文完
 0