Git常用命令

2017-07-26  本文已影响0人  _Jing_bo

init

cd 到某一目录下,创建一个空仓库。

$git init

status

查看状态,查看当前仓库的状态,用的比较频繁

$git status

add

添加待提交的文件 *表示所有文件,可指定文件名

$git add file.txt

commit

提交,-m表示带有提示信息

git commit -m ‘commit message’

branch

git init后只有个主分支master,可通过

$git branch        查看分支
$git branch -d branchName        删除分支
$git branch -D branchName        强制删除分支

checkout

切换分支

$git checkout branchName 切换分支
$git checkout -b branchName 创建新分支并切换

tag

查看版本信息

log

查看commit记录

remote

本地项目关联Github上的项目

$git remote add 远程项目URL

查看关联了哪些远程项目

$git remote -v
上一篇下一篇

猜你喜欢

热点阅读