首页 > 代码库 > git 基本用法

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 基本用法