
Git
文章平均质量分 52
代元培
听风看雨 见贤思齐 抚霜踏雪 青云直上
展开
-
git各阶段回滚撤销操作
1、修改了一个不需要修改的文件时撤销(工作区的代码撤销) $ cat hello.txt // 先查看一下文件内容 hello world! $ vi hello.txt // 修改文件内容 $ cat hello.txt // 查看修改后的文件内容 hello world! this is new line $ git status On branch master Changes not staged for commit: (use "git add <file&...原创 2021-01-20 14:16:23 · 674 阅读 · 0 评论 -
git push -u
# 第一次提交git的时候 # git全局设置 git config --global user.name "daiyp" git config --global user.email "daiyp@qq.com" # 创建git仓库 mkdir datax cd datax git init touch README.md git add README.md git commit -m 'f...原创 2020-03-20 15:25:03 · 263 阅读 · 0 评论 -
git常用命令
# 创建SSH Key(生成id_rsa私钥和id_rsa.pub公钥) ssh-keygen -t rsa -C "daiyuanpei@qq.com" # 查看所有分支 git branch -a # 切换分支到sign分支 git checkout remotes/origin/sign # 查看版本库状态,什么被修改过但还没提交的 git status # 查看当前相对上一次提交修改的内...原创 2020-01-22 17:02:58 · 162 阅读 · 0 评论 -
git忽略文件
在Git工作区的根目录下创建一个特殊文件.gitignore,然后把要忽略的文件名填进去,Git就会自动忽略这些文件。 不需要从头写.gitignore文件,GitHub已经为我们准备了各种配置文件,只需要组合一下就可以使用了。所有配置文件可以直接在线浏览:https://github.com/github/gitignore # .gitignore 示例 /node_modules .e...原创 2019-12-23 20:08:21 · 249 阅读 · 0 评论