git 基本用法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git 基本用法相关的知识,希望对你有一定的参考价值。
返回上一个文件
git reset --hard HEAD~1
创建文件
mkdir 文件名
调用文件
cd 文件名
文件夹里添加文本
touch index.html
文本添加内容
vim 文本名 退出时 按Esc键 输入:wq 回车
上传文件
初始化
git init
添加工作区间
git add
添加全部文件工作区间
git add
查看当前文件状态
git status
克隆
git clone (git 文件链接)
文件所在地
pwd
提交备注
git commit -am " "
链接到git
git remote add origin 链接(git创建的文件链接)
更新后上传时如果上传失败
git remote add origin
上传git
git push -u origin master
长期存储密码
git config --global credential.helper store
创建分支到切换分支
git checkout -b masters(分支名masters)
以上是关于git 基本用法的主要内容,如果未能解决你的问题,请参考以下文章