webstorm 中 git 基本操作

2019独角兽企业重金招聘Python工程师标准>>> hot3.png

一、基本设置

    在安装完 Git 之后,需要运行以下两句命令

git config [--global] user.name "John Doe"
git config [--global] user.email [email protected]

    如果不想每次 pull|push 操作都输入用户名、密码则添加以下设置

git config [--global] credential.helper store

二、本地库(仓库)[init|clone]

    新建仓库:

    创建一个目录,在目录中执行

git init

    克隆仓库:    

git clone  [pathname]

remote: 远程库地址
local: 本地库地址
pathname: 检出路径(默认为当前目录)

三、文件[add|commit]

 webstorm 中 git 基本操作_第1张图片

    文件状态:

        Untracked: 未跟踪

        Unmodified: 未修改

        Modified: 已修改

        Staged: 已暂存

    将未跟踪(Untracked)或已修改文件(Modified)放入暂存区(Staged):

git add <.|pathname>...

.: 所有文件

pathanme: 文件路径

    webstorm 中 git 基本操作_第2张图片

    将暂存区(Staged)的文件保存(未修改状态:Unmodified)

git commit <-m message>

-m message: 本次提交信息

    webstorm 中 git 基本操作_第3张图片

    webstorm 中 git 基本操作_第4张图片

四、分支[branches|checkout]

    1、分支新建:

git branch 

    2、分支切换:

git checkout 

    3、分支列表:

git branch [-a]

    4、分支重命名:

git branch (-m | -M) [] 

    5、分支合并:(将指定分支合并到当前分支)

git merge 

    6、分支删除:(将被合并的分支删除)

git branch (-d | -D) [-r] 

 

五、远程库(远程)[remote]

    1、查看远程库

git remote [-v | --verbose]

    2、添加远程库:

git remote add [-t ] [-m ] [-f] [--[no-]tags] [--mirror=]  

    webstorm 中 git 基本操作_第5张图片

    webstorm 中 git 基本操作_第6张图片

    3、重命名远程库分支

git remote rename  

    4、删除远程库

git remote remove 

 

六、拉取[pull]

git pull  

 

七、推送[push]

git push [-u]  

 

 

更多基本命令行操作参考https://git-scm.com/book/zh/v2

转载于:https://my.oschina.net/fattypanda/blog/1813521

你可能感兴趣的:(webstorm 中 git 基本操作)