Git
文章平均质量分 61
ikeepo
https://ikeepo.github.io/
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
(20210301未解决)error: chmod on /path/.git/config.lock failed: Operation not permitted
Overview 如题error: chmod on /path/.git/config.lock failed: Operation not permitted 问题分析 From R1, the reason is : The linux command chmod is not supported by NTFS. Solution which it suggest is : mkdir -p /home/user/.gitconfigs/myrepo ln -s /home/user/...原创 2021-03-06 10:21:46 · 5221 阅读 · 1 评论 -
(20210221已解决)如何将本地已有文件夹push到github并新建仓库
Overview In english, maybe this question: How to push local directory to github, and create a new repository? Solutions Github: Create a new repository on Github, get the https URL 创建时保证是空的,不要添加Readme或.gitignore, 避免出现 master had recent pushes Compa..原创 2021-03-07 12:32:04 · 1049 阅读 · 0 评论 -
Git 常用命令(一)
Overview porcelain commands: user-friendly commands; plumbing commands: that do low-level work and were designed to be chained together UNIX-style or called from scripts. git config git config lets you get and set configuration variables that control a..原创 2021-02-21 21:34:38 · 630 阅读 · 0 评论 -
《Pro Git》读书笔记一
Overview Page: 1~63 Version Control Version control is a system that records changes to a file or set of files over time so that you can recall specific versions later. Before Git, there are: Local Version Control Systems: RCS Centralized Version Co..原创 2021-02-21 21:32:04 · 473 阅读 · 0 评论 -
重识Git
Git Git is software for tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development. Git was created by Linus Torvalds in 2005 for development of the Linux ..原创 2021-02-21 10:11:01 · 192 阅读 · 1 评论 -
(20210219已解决)git使用中出现Please make sure you have the correct access rights and the repository exists.
Overview ssh: Could not resolve hostname git_address: Name or service not known fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists 出现上述问题是因为本地环境无法通过ssh连接到目标git仓库,本质是ssh层面的问题,需要设置本..原创 2021-02-21 10:06:07 · 548 阅读 · 0 评论
分享