
learn git
Jimyoung97
从0起步的小垃圾
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Git: fatal: Pathspec is in submodule
如何把另一个git repo加到自己的git repo下? 直接甩链接:https://stackoverflow.com/questions/24472596/git-fatal-pathspec-is-in-submodule 如果不能翻墙: 如果所添加的git repo是directory,那么如下操作 git rm --cached directory git add dir...原创 2020-03-22 04:02:55 · 1718 阅读 · 0 评论 -
Add the ssh key from a new server to the Github account
Add the link here for future reference: Checking for existing SSH keys Generating a new SSH key and adding it to the ssh-agent Adding a new SSH key to your GitHub account原创 2019-12-29 04:19:13 · 234 阅读 · 0 评论 -
git pull
实验室搬砖合作项目的时候git命令总是忘记哇哇哇。多学习,多记笔记,嗯嗯 今日笔记: git pull Description: Incorporates changes from a remote repository into the current branch. More precisely, git pull runs git fetch with the given paramet...原创 2018-10-12 22:30:09 · 141 阅读 · 0 评论 -
一条龙服务: git add + git commit + git remote + git push
今日份的学习笔记:如何跟踪远端仓库,并且上传代码 Step1 git add . Description: This command updates the index using the current content found in the working tree, to prepare the content staged for the next commit Step2 ...原创 2018-10-12 22:49:58 · 1068 阅读 · 0 评论