Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
b.txt 840 Bytes
Copy Edit Raw Blame History
Your Name authored 2021-06-07 13:46 . b4
git init
git statsu
git add ./add a.text
git commit -m '一定要添加注释'
git checkout 版本号/git reset --hard 版本号
git log
忽略文件
指定某些文件或者文件夹不被git管理
在项目根路径,跟.git文件夹一个路径,新建.gitignore
语法
# 是注释
文件夹名字,是被忽视,不被提交
空文件夹不被管理
c/*.py 表示c文件下的.py 都被忽略
/dist 表示根路径下的dist文件夹,不被管理
*.* 表示后最名带点的都不被管理
*.py 表示后最名为py的文件,不被管理
*.log* 表示所有.log都忽略
分支操作
git branch 查看所有分支
git branch dev 创建分支
git checkout dev 切换分支
git branch -d dev 删除分支
git checkout -b dev 创建并切换
git merge 分支名字 合并分支(dev-master 必须切到master上才行)
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化